1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-05 15:34:41 +00:00

Match z_debug for retail (#1694)

* match z_debug for retail

* prototype

* directive
This commit is contained in:
fig02 2024-02-02 12:44:31 -05:00 committed by GitHub
parent 4e2d2885bc
commit 23de92d2f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -153,6 +153,7 @@ void DebugCamera_DrawScreenText(GfxPrint* printer) {
}
}
#if OOT_DEBUG
/**
* 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.
@ -269,6 +270,7 @@ void Regs_DrawEditor(GfxPrint* printer) {
}
}
}
#endif
/**
* Draws the Reg Editor and Debug Camera text on screen
@ -291,9 +293,11 @@ void Debug_DrawText(GraphicsContext* gfxCtx) {
DebugCamera_DrawScreenText(&printer);
}
#if OOT_DEBUG
if (gRegEditor->regPage != 0) {
Regs_DrawEditor(&printer);
}
#endif
sDebugCamTextEntryCount = 0;