From 18631e7292cc6a55a61d07029f6933b32ccaed4b Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Fri, 6 Dec 2024 15:14:47 -0300 Subject: [PATCH] disable versus mode for now --- include/mods.h | 2 +- src/overlays/ovl_menu/fox_option.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/mods.h b/include/mods.h index e578db1c..7fe9a71f 100644 --- a/include/mods.h +++ b/include/mods.h @@ -96,8 +96,8 @@ void RamMod_Update(void); void Spawner(void); #endif -#define DEBUG_SKIP_BRIEFING 1 #define DEBUG_BOSS_KILLER 0 +#define DEBUG_VERSUS 0 /* diff --git a/src/overlays/ovl_menu/fox_option.c b/src/overlays/ovl_menu/fox_option.c index 4cb71e02..f6c4a602 100644 --- a/src/overlays/ovl_menu/fox_option.c +++ b/src/overlays/ovl_menu/fox_option.c @@ -971,6 +971,11 @@ void Option_MainMenu_Update(void) { } if (gControllerPress[gMainController].button & (A_BUTTON | START_BUTTON)) { +#if DEBUG_VERSUS == 0 + if (sMainMenuCursor == 2) { + break; + } +#endif AUDIO_PLAY_SFX(NA_SE_ARWING_DECIDE, gDefaultSfxSource, 4); sLightningYpos = sOptionCardPosY[sMainMenuCursor]; sDrawCursor = false;