diff options
| author | esquizo <esquizo+noreply@esquizo.net> | 2026-05-19 10:20:09 -0300 |
|---|---|---|
| committer | esquizo <esquizo+noreply@esquizo.net> | 2026-05-19 10:20:09 -0300 |
| commit | 371c861b58dd8fca62c47526bd5b1852a9b5e3d4 (patch) | |
| tree | 765dc67765048805f925d61719f17581f1095681 /libphysics | |
| parent | 55677cd9e31943f43bc01515ce29325e6b053c40 (diff) | |
libphysics: consertado bug com o tick
O que realmente aconteceu aqui...?
Diffstat (limited to 'libphysics')
| -rw-r--r-- | libphysics/tick.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
