diff options
Diffstat (limited to 'src/crepe')
| -rw-r--r-- | src/crepe/system/AnimatorSystem.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/AnimatorSystem.cpp b/src/crepe/system/AnimatorSystem.cpp index 31eb85c..dd8c5ed 100644 --- a/src/crepe/system/AnimatorSystem.cpp +++ b/src/crepe/system/AnimatorSystem.cpp @@ -13,7 +13,7 @@ void AnimatorSystem::update() {  	LoopTimerManager & timer = this->mediator.loop_timer;  	RefVector<Animator> animations = mgr.get_components_by_type<Animator>(); -	unsigned long long elapsed_time = timer.get_elapsed_time().count(); +	float elapsed_time = timer.get_elapsed_time().count() / 1000000.0f;  	for (Animator & a : animations) {  		if (!a.active) continue;  |