diff options
| author | cadmic <cadmic24@gmail.com> | 2024-02-26 23:23:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-27 02:23:19 -0500 |
| commit | c6e3ef4570486b12f60d2fc18430a54cccf3d6eb (patch) | |
| tree | b7bbee5acebec0078d4fbfca017a2c4c31f0c446 /src/code/z_debug.c | |
| parent | c3faefc061b7bc57eae460deffd7d2d0ad7d3c0c (diff) | |
Match retail code data sizes (#1741)
* Match retail audio data
* Fix various small code data problems
* Disable terminal colors in debug builds
* Match z_actor_dlftbls.c .rodata
* Use _3 for unused nameString macro parameter
* Move sDebugCutsceneScriptBuf to be in-function static
* Comment on actor name being NULL
* Split out padding the fault_drawer.bss.s
Diffstat (limited to 'src/code/z_debug.c')
| -rw-r--r-- | src/code/z_debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/code/z_debug.c b/src/code/z_debug.c index 8fd35af19..652b6f643 100644 --- a/src/code/z_debug.c +++ b/src/code/z_debug.c @@ -29,6 +29,7 @@ Color_RGBA8 sDebugCamTextColors[] = { { 128, 255, 32, 128 }, // DEBUG_CAM_TEXT_GREEN }; +#if OOT_DEBUG InputCombo sRegGroupInputCombos[REG_GROUPS] = { { BTN_L, BTN_CUP }, // REG { BTN_L, BTN_CLEFT }, // SREG @@ -93,6 +94,7 @@ char sRegGroupChars[REG_GROUPS] = { 'k', // kREG 'b', // bREG }; +#endif void Regs_Init(void) { s32 i; |
