mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-07 00:14:38 +00:00
Revert bad uses of if (OOT_DEBUG)
(#1666)
This commit is contained in:
parent
7b770dc1e0
commit
18b7030534
2 changed files with 6 additions and 2 deletions
|
@ -55,7 +55,8 @@ void Main(void* arg) {
|
|||
PRINTF("システムヒープ初期化 %08x-%08x %08x\n", systemHeapStart, fb, gSystemHeapSize);
|
||||
SystemHeap_Init((void*)systemHeapStart, gSystemHeapSize); // initializes the system heap
|
||||
|
||||
if (OOT_DEBUG) {
|
||||
#if OOT_DEBUG
|
||||
{
|
||||
void* debugHeapStart;
|
||||
u32 debugHeapSize;
|
||||
|
||||
|
@ -70,6 +71,7 @@ void Main(void* arg) {
|
|||
PRINTF("debug_InitArena(%08x, %08x)\n", debugHeapStart, debugHeapSize);
|
||||
DebugArena_Init(debugHeapStart, debugHeapSize);
|
||||
}
|
||||
#endif
|
||||
|
||||
Regs_Init();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue