From 371c861b58dd8fca62c47526bd5b1852a9b5e3d4 Mon Sep 17 00:00:00 2001 From: esquizo Date: Tue, 19 May 2026 10:20:09 -0300 Subject: libphysics: consertado bug com o tick O que realmente aconteceu aqui...? --- libphysics/tick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libphysics/tick.c') diff --git a/libphysics/tick.c b/libphysics/tick.c index 8477ff7..8d7415b 100644 --- a/libphysics/tick.c +++ b/libphysics/tick.c @@ -21,7 +21,7 @@ phxtick(float delta) static float time; time += delta; - if(time >= PHX_TICK_TIME > 0) { + if(time >= PHX_TICK_TIME) { while(time >= PHX_TICK_TIME) { tick(); time -= PHX_TICK_TIME; -- cgit v1.2.3