diff options
author | aap <aap@papnet.eu> | 2020-04-23 22:10:46 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-04-23 22:10:46 +0200 |
commit | 6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a (patch) | |
tree | f98c56e1e5428a9cd9dd6c26369a3358727db78b /src/core/re3.cpp | |
parent | fixed extra directory issues (diff) | |
parent | removed fix that made no sense (diff) | |
download | re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.gz re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.bz2 re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.lz re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.xz re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.zst re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/re3.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index e5f42696..4cec5773 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -1,6 +1,6 @@ #include <direct.h> #include <csignal> -#include <windows.h> +#define WITHWINDOWS #include "common.h" #include "patcher.h" #include "Renderer.h" @@ -372,7 +372,6 @@ DebugMenuPopulate(void) DebugMenuAddVarBool8("Debug", "Don't render Vehicles", (int8*)&gbDontRenderVehicles, nil); DebugMenuAddVarBool8("Debug", "Don't render Objects", (int8*)&gbDontRenderObjects, nil); #ifdef TOGGLEABLE_BETA_FEATURES - DebugMenuAddVarBool8("Debug", "Toggle banned particles", (int8*)&CParticle::bEnableBannedParticles, nil); DebugMenuAddVarBool8("Debug", "Toggle popping heads on headshot", (int8*)&CPed::bPopHeadsOnHeadshot, nil); DebugMenuAddVarBool8("Debug", "Toggle peds running to phones to report crimes", (int8*)&CPed::bMakePedsRunToPhonesToReportCrimes, nil); #endif |