diff options
author | withmorten <morten.with@gmail.com> | 2021-07-03 02:52:54 +0200 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-07-03 02:52:54 +0200 |
commit | 060c1181bcf2000a4cea1184d597b3b2c087e447 (patch) | |
tree | 07f7246585eaed13b9dfa30d34de12c9c7b821b1 | |
parent | premake: add no-full-paths option for CI builds, rename lto to with-lto (diff) | |
download | re3-060c1181bcf2000a4cea1184d597b3b2c087e447.tar re3-060c1181bcf2000a4cea1184d597b3b2c087e447.tar.gz re3-060c1181bcf2000a4cea1184d597b3b2c087e447.tar.bz2 re3-060c1181bcf2000a4cea1184d597b3b2c087e447.tar.lz re3-060c1181bcf2000a4cea1184d597b3b2c087e447.tar.xz re3-060c1181bcf2000a4cea1184d597b3b2c087e447.tar.zst re3-060c1181bcf2000a4cea1184d597b3b2c087e447.zip |
-rw-r--r-- | src/core/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/config.h b/src/core/config.h index 7b8a5b27..2d1b75ae 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -380,12 +380,12 @@ enum Config { #define CAMERA_PICKUP // Peds -#define PED_SKIN // support for skinned geometry on peds +#define PED_SKIN // support for skinned geometry on peds, requires COMPATIBLE_SAVES #define ANIMATE_PED_COL_MODEL // #define VC_PED_PORTS // various ports from VC's CPed, mostly subtle // #define NEW_WALK_AROUND_ALGORITHM // to make walking around vehicles/objects less awkward #define CANCELLABLE_CAR_ENTER -//#define PEDS_REPORT_CRIMES_ON_PHONE +//#define PEDS_REPORT_CRIMES_ON_PHONE, requires COMPATIBLE_SAVES // Camera //#define PS2_CAM_TRANSITION // old way of transitioning between cam modes @@ -432,7 +432,7 @@ enum Config { // if these defines are enabled saves are not vanilla compatible without COMPATIBLE_SAVES #ifndef COMPATIBLE_SAVES -#undef PED_SKINS +#undef PED_SKIN #undef PEDS_REPORT_CRIMES_ON_PHONE #endif |