diff options
author | aap <aap@papnet.eu> | 2020-10-31 17:06:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-31 17:06:25 +0100 |
commit | 6eef54e3fc2f6232608aa88818bcc5dabc4ece8e (patch) | |
tree | 94ac01b566addc9a616916ed34422ff2bd0aab1c /src/rw | |
parent | Update librw (diff) | |
parent | fix draw menu version text ifdef location (diff) | |
download | re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.tar re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.tar.gz re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.tar.bz2 re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.tar.lz re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.tar.xz re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.tar.zst re3-6eef54e3fc2f6232608aa88818bcc5dabc4ece8e.zip |
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 6a7010e2..35af1ebd 100644 --- a/src/rw/RwHelper.cpp +++ b/src/rw/RwHelper.cpp @@ -7,8 +7,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 @@ -19,7 +21,7 @@ bool gPS2alphaTest = false; #endif bool gBackfaceCulling = true; -#ifndef FINAL +#if !defined(FINAL) || defined(DEBUGMENU) static bool charsetOpen; void OpenCharsetSafe() { |