This commit is contained in:
2025-10-25 21:15:13 -05:00
parent 5c3db5d991
commit d74226dab1
4 changed files with 8 additions and 7 deletions

View File

@@ -41,7 +41,7 @@ void timeUpdate(void) {
TIME.time += TIME.delta;
// Perform a fixed time step.
if(TIME.time - TIME.fixedTime >= TIME_STEP) {
if(TIME.time - TIME.fixedTime >= (TIME_STEP * 0.9f)) {
TIME.fixedUpdate = true;
TIME.fixedDelta = TIME_STEP;
TIME.fixedTime += TIME_STEP;