forgot to remove debug

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@594 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-04 16:10:59 +00:00
parent 8c5072528f
commit 3c115aa783

View File

@@ -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);
}
}
}