From d15c5a061f10976efcc20d63c65634dfb11108e9 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 12 Apr 2024 17:01:41 +0800 Subject: [PATCH] 1 --- app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.go b/app.go index d069fbf..8cee423 100644 --- a/app.go +++ b/app.go @@ -177,12 +177,12 @@ func (this *app) run() { _timer.update() this.dispatchIMMsg() this.userApp.Update() - this.schedule() endTick := q5.GetTickCount() - if this.maxRunDelay < endTick-beginTick { this.maxRunDelay = endTick - beginTick } + + this.schedule() } }