diff options
| author | withmorten <morten.with@gmail.com> | 2020-10-29 19:01:09 +0100 |
|---|---|---|
| committer | withmorten <morten.with@gmail.com> | 2020-10-29 19:18:46 +0100 |
| commit | e95516032f4e44ea35b7358f60c464c0faa1df91 (patch) | |
| tree | c5f78e8154050434524296da0cc9150d146e0cc8 /src/rw | |
| parent | New GXT lines (diff) | |
| download | re3-e95516032f4e44ea35b7358f60c464c0faa1df91.tar.gz | |
fix FINAL build, add DEBUGMENU and other simple qol defines to FINAL, add extra defines for menu and game version text
Diffstat (limited to 'src/rw')
| -rw-r--r-- | src/rw/RwHelper.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rw/RwHelper.cpp b/src/rw/RwHelper.cpp index 4b598e9b..dbadae6a 100644 --- a/src/rw/RwHelper.cpp +++ b/src/rw/RwHelper.cpp @@ -6,8 +6,10 @@ #include "Timecycle.h" #include "skeleton.h" #include "Debug.h" -#ifndef FINAL +#if !defined(FINAL) || defined(DEBUGMENU) #include "rtcharse.h" +#endif +#ifndef FINAL RtCharset *debugCharset; #endif @@ -17,7 +19,7 @@ bool gPS2alphaTest = true; bool gPS2alphaTest = false; #endif -#ifndef FINAL +#if !defined(FINAL) || defined(DEBUGMENU) static bool charsetOpen; void OpenCharsetSafe() { |
