diff options
Diffstat (limited to 'src/crepe')
-rw-r--r-- | src/crepe/system/ScriptSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/ScriptSystem.cpp b/src/crepe/system/ScriptSystem.cpp index 4afd2ba..0605c7a 100644 --- a/src/crepe/system/ScriptSystem.cpp +++ b/src/crepe/system/ScriptSystem.cpp @@ -25,7 +25,7 @@ void ScriptSystem::update() { script->initialized = true; } - duration_t delta_time = timer.get_delta_time(); + duration_t delta_time = timer.get_scaled_fixed_delta_time(); script->update(delta_time); } } |