diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2019-06-12 12:40:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-12 12:40:59 +0200 |
commit | 047ecaf1711a398d1e9dff7881617be5170e32c5 (patch) | |
tree | d7697a202a3f8fb822c7744ab235d7fed39b5ccd /src/main.cpp | |
parent | Merge pull request #4 from GTAmodding/master (diff) | |
parent | fixed debugmenu (diff) | |
download | re3-047ecaf1711a398d1e9dff7881617be5170e32c5.tar re3-047ecaf1711a398d1e9dff7881617be5170e32c5.tar.gz re3-047ecaf1711a398d1e9dff7881617be5170e32c5.tar.bz2 re3-047ecaf1711a398d1e9dff7881617be5170e32c5.tar.lz re3-047ecaf1711a398d1e9dff7881617be5170e32c5.tar.xz re3-047ecaf1711a398d1e9dff7881617be5170e32c5.tar.zst re3-047ecaf1711a398d1e9dff7881617be5170e32c5.zip |
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(); } |