From 4351733ffec291ec97d77ab1618b39865af4217e Mon Sep 17 00:00:00 2001 From: ceski <56656010+ceski-1@users.noreply.github.com> Date: Thu, 14 Dec 2023 06:26:03 -0800 Subject: [PATCH] Don't limit menus to 35 fps (#1324) --- src/d_loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_loop.c b/src/d_loop.c index d2abec92..c7b24558 100644 --- a/src/d_loop.c +++ b/src/d_loop.c @@ -728,7 +728,7 @@ void TryRunTics (void) // [AM] If we've uncapped the framerate and there are no tics // 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 entertic = I_GetTime() / ticdup;