summaryrefslogtreecommitdiffstats
path: root/src/core/config.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-10-31 17:06:25 +0100
committerGitHub <noreply@github.com>2020-10-31 17:06:25 +0100
commit6eef54e3fc2f6232608aa88818bcc5dabc4ece8e (patch)
tree94ac01b566addc9a616916ed34422ff2bd0aab1c /src/core/config.h
parentUpdate librw (diff)
parentfix draw menu version text ifdef location (diff)
downloadre3-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/core/config.h')
-rw-r--r--src/core/config.h25
1 files changed, 21 insertions, 4 deletions
diff --git a/src/core/config.h b/src/core/config.h
index a7de3a8a..ea4330a4 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -156,6 +156,23 @@ enum Config {
// any debug stuff that is only left in mobile, is not in MASTER
//#define MASTER
+// once and for all:
+// pc: FINAL & MASTER
+// mobile: FINAL
+
+// MASTER builds must be FINAL
+#ifdef MASTER
+#define FINAL
+#endif
+
+// quality of life fixes that should also be in FINAL
+#define NASTY_GAME // nasty game for all languages
+#define NO_CDCHECK
+
+// those infamous texts
+#define DRAW_GAME_VERSION_TEXT
+#define DRAW_MENU_VERSION_TEXT
+
#if defined GTA_PS2
# define GTA_PS2_STUFF
# define RANDOMSPLASH
@@ -177,9 +194,13 @@ enum Config {
#ifdef MASTER
// only in master builds
+ #undef DRAW_GAME_VERSION_TEXT
#else
// not in master builds
#define VALIDATE_SAVE_SIZE
+
+ #define NO_MOVIES // disable intro videos
+ #define DEBUGMENU
#endif
#ifdef FINAL
@@ -187,11 +208,7 @@ enum Config {
# define USE_MY_DOCUMENTS // use my documents directory for user files
#else
// not in any game
-# define NASTY_GAME // nasty game for all languages
-# define NO_MOVIES // disable intro videos
-# define NO_CDCHECK
# define CHATTYSPLASH // print what the game is loading
-# define DEBUGMENU
# define TIMEBARS // print debug timers
#endif