Fix render task auto cleanup timer

This commit is contained in:
James Seibel
2026-03-14 09:18:28 -05:00
parent e2421c97ed
commit 15d1d78954
@@ -123,7 +123,7 @@ public class RenderThreadTaskHandler
{
long nowMs = System.currentTimeMillis();
long msSinceLast = nowMs - this.msSinceGlTasksRun;
if (msSinceLast > MS_BEFORE_RUN_CLEANUP_TIMER)
if (msSinceLast < MS_BEFORE_RUN_CLEANUP_TIMER)
{
return;
}