From affdfcfbad61b6fb5748993157c15bc6cf037021 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 17 Apr 2026 22:35:49 +0200 Subject: [PATCH] reduce framelimit to 10 when outoffocus --- control.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/control.cpp b/control.cpp index d7427dba..65e12c30 100644 --- a/control.cpp +++ b/control.cpp @@ -991,6 +991,7 @@ EX void mainloopiter() { cframelimit = vid.framelimit; if(stillscreen && cframelimit > 10) cframelimit = 10; + if(outoffocus && cframelimit > 10) cframelimit = 10; bool normal = cmode & sm::NORMAL;