From 17edb82c0d22fb78135033f92a624bd6cde6f495 Mon Sep 17 00:00:00 2001 From: fig02 Date: Sun, 17 Nov 2024 17:02:07 -0500 Subject: Decouple Debug Features From gc-eu-mq-dbg (#2296) * rename OOT_DEBUG to DEBUG_FEATURES * makefile changes * add DEBUG_ASSETS * fix DEBUG_FEATURES usages * format * fix errors * review * fix problem and review2 * review * add DEBUG_FEATURES to DEBUG_ASSETS check * review * whoops * format --- src/code/z_debug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/code/z_debug.c') diff --git a/src/code/z_debug.c b/src/code/z_debug.c index f937b2d17..d83dc2337 100644 --- a/src/code/z_debug.c +++ b/src/code/z_debug.c @@ -32,7 +32,7 @@ Color_RGBA8 sDebugCamTextColors[] = { { 128, 255, 32, 128 }, // DEBUG_CAM_TEXT_GREEN }; -#if OOT_DEBUG +#if DEBUG_FEATURES InputCombo sRegGroupInputCombos[REG_GROUPS] = { { BTN_L, BTN_CUP }, // REG { BTN_L, BTN_CLEFT }, // SREG @@ -158,7 +158,7 @@ void DebugCamera_DrawScreenText(GfxPrint* printer) { } } -#if OOT_DEBUG +#if DEBUG_FEATURES /** * Updates the state of the Reg Editor according to user input. * Also contains a controller rumble test that can be interfaced with via related REGs. @@ -298,7 +298,7 @@ void Debug_DrawText(GraphicsContext* gfxCtx) { DebugCamera_DrawScreenText(&printer); } -#if OOT_DEBUG +#if DEBUG_FEATURES if (gRegEditor->regPage != 0) { Regs_DrawEditor(&printer); } -- cgit v1.2.3