summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorXinerki <simasadves@gmail.com>2020-05-21 15:47:48 +0200
committerXinerki <simasadves@gmail.com>2020-05-21 15:47:48 +0200
commit6692f5b2aa11e5cac51a61b41164316030152b16 (patch)
tree07e25187e2a1d0c3f55062e9201516246b70dd98 /src/core
parentmenu map color change (diff)
downloadre3-6692f5b2aa11e5cac51a61b41164316030152b16.tar
re3-6692f5b2aa11e5cac51a61b41164316030152b16.tar.gz
re3-6692f5b2aa11e5cac51a61b41164316030152b16.tar.bz2
re3-6692f5b2aa11e5cac51a61b41164316030152b16.tar.lz
re3-6692f5b2aa11e5cac51a61b41164316030152b16.tar.xz
re3-6692f5b2aa11e5cac51a61b41164316030152b16.tar.zst
re3-6692f5b2aa11e5cac51a61b41164316030152b16.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/config.h3
-rw-r--r--src/core/re3.cpp2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/core/config.h b/src/core/config.h
index 105454fa..1d7e760a 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -204,6 +204,9 @@ enum Config {
#else
#define AUDIO_OAL
#endif
+#ifdef DEBUGMENU
+#define RELOADABLES // some debug menu options to reload TXD files
+#endif
// Particle
//#define PC_PARTICLE
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index 7f69e0f1..c7fade52 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -385,10 +385,12 @@ DebugMenuPopulate(void)
DebugMenuAddCmd("Debug", "Start Credits", CCredits::Start);
DebugMenuAddCmd("Debug", "Stop Credits", CCredits::Stop);
+#ifdef RELOADABLES
DebugMenuAddCmd("Reload", "HUD.TXD", CHud::ReloadTXD);
DebugMenuAddCmd("Reload", "FONTS.TXD", NULL);
DebugMenuAddCmd("Reload", "FRONTEN1.TXD", NULL);
DebugMenuAddCmd("Reload", "FRONTEN2.TXD", NULL);
+#endif
extern bool PrintDebugCode;
extern int16 DebugCamMode;