summaryrefslogtreecommitdiffstats
path: root/src/core/re3.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-03-31 10:29:35 +0200
committerGitHub <noreply@github.com>2020-03-31 10:29:35 +0200
commita57d9b6797841db38f14b63e224da2d00d8f38fc (patch)
tree619bc010a0a290810fcc96b79b3a4071da1bb9cb /src/core/re3.cpp
parentMerge pull request #371 from Sergeanur/MoreLanguages (diff)
parentMouse free cam for peds&cars (under FREE_CAM) (diff)
downloadre3-a57d9b6797841db38f14b63e224da2d00d8f38fc.tar
re3-a57d9b6797841db38f14b63e224da2d00d8f38fc.tar.gz
re3-a57d9b6797841db38f14b63e224da2d00d8f38fc.tar.bz2
re3-a57d9b6797841db38f14b63e224da2d00d8f38fc.tar.lz
re3-a57d9b6797841db38f14b63e224da2d00d8f38fc.tar.xz
re3-a57d9b6797841db38f14b63e224da2d00d8f38fc.tar.zst
re3-a57d9b6797841db38f14b63e224da2d00d8f38fc.zip
Diffstat (limited to 'src/core/re3.cpp')
-rw-r--r--src/core/re3.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index 500bf230..05d28167 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -373,8 +373,10 @@ DebugMenuPopulate(void)
extern bool PrintDebugCode;
extern int16 &DebugCamMode;
#ifdef FREE_CAM
- extern bool bFreeCam;
- DebugMenuAddVarBool8("Cam", "Free Cam", (int8*)&bFreeCam, nil);
+ extern bool bFreePadCam;
+ extern bool bFreeMouseCam;
+ DebugMenuAddVarBool8("Cam", "Free Gamepad Cam", (int8*)&bFreePadCam, nil);
+ DebugMenuAddVarBool8("Cam", "Free Mouse Cam", (int8*)&bFreeMouseCam, nil);
#endif
DebugMenuAddVarBool8("Cam", "Print Debug Code", (int8*)&PrintDebugCode, nil);
DebugMenuAddVar("Cam", "Cam Mode", &DebugCamMode, nil, 1, 0, CCam::MODE_EDITOR, nil);