summaryrefslogtreecommitdiff
path: root/src/code/sys_cfb.c
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2024-11-17 17:02:07 -0500
committerGitHub <noreply@github.com>2024-11-17 17:02:07 -0500
commit17edb82c0d22fb78135033f92a624bd6cde6f495 (patch)
tree1f5f077c12e3a693745fcbb0aa450b35cf8ff9b6 /src/code/sys_cfb.c
parentcf4dc98cc934cdb62ed8b5001602468fac6dfeb3 (diff)
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
Diffstat (limited to 'src/code/sys_cfb.c')
-rw-r--r--src/code/sys_cfb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/sys_cfb.c b/src/code/sys_cfb.c
index 76012588b..c7e2933be 100644
--- a/src/code/sys_cfb.c
+++ b/src/code/sys_cfb.c
@@ -15,7 +15,7 @@ void SysCfb_Init(s32 n64dd) {
tmpFbEnd = 0x8044BE80;
if (n64dd == 1) {
PRINTF(T("RAM 8M mode (N64DD対応)\n", "RAM 8M mode (N64DD compatible)\n"));
-#if OOT_DEBUG
+#if DEBUG_FEATURES
sSysCfbEnd = 0x805FB000;
#else
sSysCfbEnd = 0x80600000;
@@ -23,7 +23,7 @@ void SysCfb_Init(s32 n64dd) {
} else {
PRINTF(T("このバージョンのマージンは %dK バイトです\n", "The margin for this version is %dK bytes\n"),
(0x4BC00 / 1024));
-#if OOT_DEBUG
+#if DEBUG_FEATURES
sSysCfbEnd = tmpFbEnd;
#else
sSysCfbEnd = 0x80400000;