diff options
author | aap <aap@papnet.eu> | 2020-03-29 14:05:21 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-03-29 14:07:38 +0200 |
commit | ac097e6fc771172ace85f89a7a77d8a96242a449 (patch) | |
tree | c3bd92cf91c4b0c4c719209f06d7336fcfb7682d /src/core/re3.cpp | |
parent | Fire and PlayerSkin fix (diff) | |
download | re3-ac097e6fc771172ace85f89a7a77d8a96242a449.tar re3-ac097e6fc771172ace85f89a7a77d8a96242a449.tar.gz re3-ac097e6fc771172ace85f89a7a77d8a96242a449.tar.bz2 re3-ac097e6fc771172ace85f89a7a77d8a96242a449.tar.lz re3-ac097e6fc771172ace85f89a7a77d8a96242a449.tar.xz re3-ac097e6fc771172ace85f89a7a77d8a96242a449.tar.zst re3-ac097e6fc771172ace85f89a7a77d8a96242a449.zip |
Diffstat (limited to 'src/core/re3.cpp')
-rw-r--r-- | src/core/re3.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index a65e6d76..500bf230 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -372,6 +372,10 @@ DebugMenuPopulate(void) extern bool PrintDebugCode; extern int16 &DebugCamMode; +#ifdef FREE_CAM + extern bool bFreeCam; + DebugMenuAddVarBool8("Cam", "Free Cam", (int8*)&bFreeCam, nil); +#endif DebugMenuAddVarBool8("Cam", "Print Debug Code", (int8*)&PrintDebugCode, nil); DebugMenuAddVar("Cam", "Cam Mode", &DebugCamMode, nil, 1, 0, CCam::MODE_EDITOR, nil); DebugMenuAddCmd("Cam", "Normal", []() { DebugCamMode = 0; }); |