From 3c115aa783405a308d831ba64ea22a018620ee08 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 4 Nov 2025 16:10:59 +0000 Subject: [PATCH] forgot to remove debug git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@594 b9cfdab3-6d41-4d17-bbe4-086880011989 --- src/core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core.c b/src/core.c index 5901fea..c6d0c5e 100644 --- a/src/core.c +++ b/src/core.c @@ -312,7 +312,7 @@ void MwLoop(MwWidget handle) { MwDispatchUserHandler(handle->tick_list[i], MwNtickHandler, NULL); } - more = over % wait; + more = over % (wait / 2); t = (tick + wait - more) - (t2 = MwLLGetTick()); if(t > 0) { MwLLSleep(t); @@ -321,7 +321,6 @@ void MwLoop(MwWidget handle) { } else { tick = t2; over += -t; - printf("%d\n", over); } } }