summaryrefslogtreecommitdiffstats
path: root/src/core/config.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-10-31 17:06:25 +0100
committerSergeanur <s.anureev@yandex.ua>2020-10-31 18:21:10 +0100
commit3665a82418b5e807b94d3ebc0494345dd33ded64 (patch)
tree5190ef4d51735e5908dc68ce7735011890c07f12 /src/core/config.h
parentfoobar! (diff)
downloadre3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar
re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.gz
re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.bz2
re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.lz
re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.xz
re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.zst
re3-3665a82418b5e807b94d3ebc0494345dd33ded64.zip
Diffstat (limited to 'src/core/config.h')
-rw-r--r--src/core/config.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/core/config.h b/src/core/config.h
index 4ea7f60f..ce77391c 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -167,6 +167,22 @@ 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
+
#if defined GTA_PS2
# define GTA_PS2_STUFF
# define RANDOMSPLASH
@@ -188,9 +204,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
@@ -198,11 +218,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