From ad08681bdf79a50d87f30b9384321d5a27a490dc Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sat, 16 Nov 2024 12:36:22 -0300 Subject: [PATCH] gArwingSpeed control in the spawner --- src/mods/spawner.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/mods/spawner.c b/src/mods/spawner.c index 889f3f8d..95131703 100644 --- a/src/mods/spawner.c +++ b/src/mods/spawner.c @@ -309,6 +309,14 @@ void Spawner_Playground(void) { gLaserStrength[0] = 2; gBombCount[0] = 9; gLifeCount[0] = 9; + +#if 0 + if (gControllerPress[0].button & L_JPAD) { + gArwingSpeed-=50; + } else if (gControllerPress[0].button & R_JPAD) { + gArwingSpeed+=50; + } +#endif } void Spawner(void) {