Don't limit menus to 35 fps (#1324)

This commit is contained in:
ceski 2023-12-14 06:26:03 -08:00 committed by GitHub
parent 708a0169e8
commit 4351733ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -728,7 +728,7 @@ void TryRunTics (void)
// [AM] If we've uncapped the framerate and there are no tics // [AM] If we've uncapped the framerate and there are no tics
// to run, return early instead of waiting around. // to run, return early instead of waiting around.
#define return_early (uncapped && counts == 0 && leveltime > oldleveltime) #define return_early (uncapped && counts == 0)
// get real tics // get real tics
entertic = I_GetTime() / ticdup; entertic = I_GetTime() / ticdup;