summaryrefslogtreecommitdiffstats
path: root/src/core/main.cpp
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-02-18 22:40:32 +0100
committerwithmorten <morten.with@gmail.com>2021-02-18 22:40:32 +0100
commit48cec4a7862f40de2d0a31c065b1b24cf52d3548 (patch)
tree59945a1d0fda7befa084f3aca91a86e866eb53ef /src/core/main.cpp
parentupdate librw; render groups only if extension supported (diff)
downloadre3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.tar
re3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.tar.gz
re3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.tar.bz2
re3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.tar.lz
re3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.tar.xz
re3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.tar.zst
re3-48cec4a7862f40de2d0a31c065b1b24cf52d3548.zip
Diffstat (limited to 'src/core/main.cpp')
-rw-r--r--src/core/main.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp
index 5eccf759..7d59307c 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -92,7 +92,10 @@ bool gbModelViewer;
bool gbShowTimebars;
#endif
#ifdef DRAW_GAME_VERSION_TEXT
-bool gDrawVersionText; // Our addition, we think it was always enabled on !MASTER builds
+bool gbDrawVersionText; // Our addition, we think it was always enabled on !MASTER builds
+#endif
+#ifdef NO_MOVIES
+bool gbNoMovies;
#endif
volatile int32 frameCount;
@@ -1109,7 +1112,7 @@ DisplayGameDebugText()
#ifdef DRAW_GAME_VERSION_TEXT
wchar ver[200];
- if(gDrawVersionText) // This realtime switch is our thing
+ if(gbDrawVersionText) // This realtime switch is our thing
{
#ifdef USE_OUR_VERSIONING