diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-12-05 00:49:32 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-12-05 00:49:32 +0100 |
commit | 0bd373cd56e187d1c1a1457e56452dc43d21bbcb (patch) | |
tree | 0af7eb1c5b63c50d57313e65438cf450eeca601c /src/core | |
parent | Merge branch 'miami' of github.com:GTAmodding/re3 into miami (diff) | |
download | re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.tar re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.tar.gz re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.tar.bz2 re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.tar.lz re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.tar.xz re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.tar.zst re3-0bd373cd56e187d1c1a1457e56452dc43d21bbcb.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/config.h b/src/core/config.h index e591a560..6e4df00d 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -310,6 +310,12 @@ enum Config { #define USE_DEBUG_SCRIPT_LOADER // Loads main.scm by default. Hold R for main_freeroam.scm and D for main_d.scm #define USE_MEASUREMENTS_IN_METERS // makes game use meters instead of feet in script #define USE_PRECISE_MEASUREMENT_CONVERTION // makes game convert feet to meeters more precisely +#define SUPPORT_JAPANESE_SCRIPT +//#define SUPPORT_XBOX_SCRIPT +//#define SUPPORT_MOBILE_SCRIPT +#if (defined SUPPORT_XBOX_SCRIPT && defined SUPPORT_MOBILE_SCRIPT) +static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually exclusive"); +#endif //#define MISSION_REPLAY // mobile feature #endif //#define SIMPLIER_MISSIONS // apply simplifications from mobile |