mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Default internal frame wait counter to 17ms to match the default r_maxfps value of 60. Fixes issue where the framerate counter wasn't enforced after setting it to 60 and restarting the game.
git-svn-id: https://svn.eduke32.com/eduke32@5936 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
643b9962a6
commit
6e94f29ee2
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ int32_t hud_showmapname = 1;
|
|||
int32_t g_levelTextTime = 0;
|
||||
|
||||
int32_t r_maxfps = 60;
|
||||
uint32_t g_frameDelay = 0;
|
||||
uint32_t g_frameDelay = 17;
|
||||
|
||||
#if defined(RENDERTYPEWIN) && defined(USE_OPENGL)
|
||||
extern char forcegl;
|
||||
|
|
Loading…
Reference in a new issue