diff options
author | withmorten <morten.with@gmail.com> | 2021-07-03 01:32:04 +0200 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-07-03 01:32:04 +0200 |
commit | 63d9d9c1483b3046024bc6556abc8ac0570a6c5b (patch) | |
tree | 449ba27739ae4a18d68e7995063a724cfdab76fe /src | |
parent | 51042e15aa2698b2342ecb9b113e05624f5d71c9 (diff) |
disable PED_SKIN and PEDS_REPORT_CRIMES_ON_PHONE when COMPATIBLE_SAVES is disabled
Diffstat (limited to 'src')
-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 a78aee22..7b8a5b27 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -430,6 +430,12 @@ enum Config { #define VC_RAIN_NERF // Reduces number of rain particles #endif +// if these defines are enabled saves are not vanilla compatible without COMPATIBLE_SAVES +#ifndef COMPATIBLE_SAVES +#undef PED_SKINS +#undef PEDS_REPORT_CRIMES_ON_PHONE +#endif + // ------- #if defined __MWERKS__ || defined VANILLA_DEFINES |