diff options
| author | cadmic <cadmic24@gmail.com> | 2024-01-30 10:54:38 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-30 13:54:38 -0500 |
| commit | 9816f62129b26b5d1068e2fa2ea887ad3fdcfd88 (patch) | |
| tree | cd6390c2cf4f3c08cec43aa1ce4022a0aecd3296 /src/boot/boot_main.c | |
| parent | 6d09437c2162a156a843f3f10b1f864437eee6ed (diff) | |
Define OOT_DEBUG=0 in retail builds (#1658)
* Define OOT_DEBUG=0 in retail builds
* Fix ifndef
* Replace VI_MODE_EDITOR_INACTIVE
* Revert "Replace VI_MODE_EDITOR_INACTIVE"
This reverts commit f7c4cae7c3b3d9fdc56e97183690c05f2dcec215.
* Replace VI_MODE_EDITOR_INACTIVE, take 2
* Revert EnBom_Draw
Diffstat (limited to 'src/boot/boot_main.c')
| -rw-r--r-- | src/boot/boot_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/boot_main.c b/src/boot/boot_main.c index 4edec9c40..b8c08fe8a 100644 --- a/src/boot/boot_main.c +++ b/src/boot/boot_main.c @@ -21,7 +21,7 @@ void bootproc(void) { gCartHandle = osCartRomInit(); osDriveRomInit(); -#ifdef OOT_DEBUG +#if OOT_DEBUG isPrintfInit(); #endif Locale_Init(); |
