diff --git a/src/common/startscreen/startscreen.cpp b/src/common/startscreen/startscreen.cpp index dd8efc965..56afb59b4 100644 --- a/src/common/startscreen/startscreen.cpp +++ b/src/common/startscreen/startscreen.cpp @@ -692,8 +692,8 @@ void FStartScreen::Render(bool force) twod->OnFrameDone(); } auto newtime = I_msTime(); - if (newtime - nowtime > minwaittime) // slow down drawing the start screen if we're on a slow GPU! - minwaittime = (newtime - nowtime); + if ((newtime - nowtime) * 2.0 > minwaittime) // slow down drawing the start screen if we're on a slow GPU! + minwaittime = (newtime - nowtime) * 2.0; } FImageSource* CreateStartScreenTexture(FBitmap& srcdata);