Sounds: Fix dtime being in milliseconds

This commit is contained in:
Desour 2023-10-28 15:14:52 +02:00 committed by DS
parent b2aa5d9261
commit 2ad17136dc
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ void *OpenALSoundManager::run()
if (stop_requested)
break;
f32 dtime = get_time_since_last_step();
f32 dtime = get_time_since_last_step() * 1.0e-3f;
t_step_start = porting::getTimeMs();
step(dtime);
}