diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index f8f9561d..e56d6938 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -79,6 +79,7 @@ void DestroySplashScreen(void); extern void (*DebugMenuProcess)(void); extern void (*DebugMenuRender)(void); +void DebugMenuInit(void); RwRGBA gColourTop; @@ -350,9 +351,7 @@ Render2dStuff(void) CPad::PrintErrorMessage(); CFont::DrawFonts(); -#if 0 DebugMenuRender(); -#endif } void @@ -647,6 +646,10 @@ Initialise3D(void *param) { if (RsRwInitialise(param)) { + // + DebugMenuInit(); + // + return CGame::InitialiseRenderWare(); } |