diff options
author | withmorten <morten.with@gmail.com> | 2021-01-21 03:40:56 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-01-21 19:42:51 +0100 |
commit | 034df61f3c2757b28c082101fd0f38054263c0ed (patch) | |
tree | 24c3362300297f399149e903f29ba47b24b65303 /src/core/config.h | |
parent | Merge remote-tracking branch 'upstream/master' into cw (diff) | |
download | re3-034df61f3c2757b28c082101fd0f38054263c0ed.tar re3-034df61f3c2757b28c082101fd0f38054263c0ed.tar.gz re3-034df61f3c2757b28c082101fd0f38054263c0ed.tar.bz2 re3-034df61f3c2757b28c082101fd0f38054263c0ed.tar.lz re3-034df61f3c2757b28c082101fd0f38054263c0ed.tar.xz re3-034df61f3c2757b28c082101fd0f38054263c0ed.tar.zst re3-034df61f3c2757b28c082101fd0f38054263c0ed.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/config.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/config.h b/src/core/config.h index e71c34a8..35130024 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -1,7 +1,7 @@ #pragma once -// disable (most) stuff that wasn't in original gta3.exe - check section at the bottom of this file -#define VANILLA_DEFINES +// disables (most) stuff that wasn't in original gta3.exe - check section at the bottom of this file +//#define VANILLA_DEFINES enum Config { NUMPLAYERS = 1, // 4 on PS2 @@ -243,7 +243,7 @@ enum Config { #define ASCII_STRCMP // use faster ascii str comparisons -#if !defined _WIN32 || defined __MWERKS__ || defined __MINGW32__ +#if !defined _WIN32 || defined __MWERKS__ || defined __MINGW32__ || defined VANILLA_DEFINES #undef ASCII_STRCMP #endif @@ -429,7 +429,6 @@ enum Config { #undef FIX_BUGS #undef THIS_IS_STUPID #undef MORE_LANGUAGES -#undef MORE_LANGUAGES #undef COMPATIBLE_SAVES #undef LOAD_INI_SETTINGS @@ -471,7 +470,7 @@ enum Config { #undef INVERT_LOOK_FOR_PAD #undef USE_DEBUG_SCRIPT_LOADER -#undef USE_MEASUREMENTS_IN_METERS // TODO +#undef USE_MEASUREMENTS_IN_METERS #undef USE_PRECISE_MEASUREMENT_CONVERTION #undef MISSION_REPLAY #undef USE_ADVANCED_SCRIPT_DEBUG_OUTPUT |