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:
terminx 2016-11-15 21:55:22 +00:00
parent 643b9962a6
commit 6e94f29ee2

View file

@ -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;