Add files via upload

This commit is contained in:
rollschuh2282
2020-05-29 12:03:32 +02:00
committed by GitHub
parent e65a09ea09
commit 20cacb18f0
4 changed files with 20 additions and 2 deletions

View File

@@ -73,6 +73,10 @@ float FramesPerSecond = 30.0f;
bool gbPrintShite = false;
bool gbModelViewer;
//Custom Timebars Toggle
#ifdef TIMEBARS
bool gbShowTimebars;
#endif
int32 frameCount;
@@ -1096,8 +1100,12 @@ Idle(void *arg)
#endif
CCredits::Render();
#ifdef TIMEBARS
//Custom Timebars toggle
if (gbShowTimebars)
tbDisplay();
#endif
DoRWStuffEndOfFrame();