diff options
author | aap <aap@papnet.eu> | 2020-10-31 17:06:25 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-10-31 18:21:10 +0100 |
commit | 3665a82418b5e807b94d3ebc0494345dd33ded64 (patch) | |
tree | 5190ef4d51735e5908dc68ce7735011890c07f12 /src/core/main.cpp | |
parent | foobar! (diff) | |
download | re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.gz re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.bz2 re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.lz re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.xz re3-3665a82418b5e807b94d3ebc0494345dd33ded64.tar.zst re3-3665a82418b5e807b94d3ebc0494345dd33ded64.zip |
Diffstat (limited to 'src/core/main.cpp')
-rw-r--r-- | src/core/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp index b1f1ea50..64b3a63f 100644 --- a/src/core/main.cpp +++ b/src/core/main.cpp @@ -757,6 +757,8 @@ DisplayGameDebugText() char str[200]; wchar ustr[200]; + +#ifdef DRAW_GAME_VERSION_TEXT wchar ver[200]; AsciiToUnicode(version_name, ver); @@ -772,6 +774,7 @@ DisplayGameDebugText() CFont::SetBackGroundOnlyTextOff(); CFont::SetColor(CRGBA(255, 108, 0, 255)); CFont::PrintString(SCREEN_SCALE_X(10.0f), SCREEN_SCALE_Y(10.0f), ver); +#endif FrameSamples++; FramesPerSecondCounter += 1000.0f / (CTimer::GetTimeStepNonClippedInSeconds() * 1000.0f); |