Skip to content

Commit

Permalink
minor speed tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpop11 committed Oct 7, 2024
1 parent 3e53dd5 commit 2fd3d3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OpenGL/src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ int main(void) {
Input::currentTime = Input::currentTime + Input::deltaTime;
realTimeLastFrame = glfwGetTime();
if (!World::settingTimeSpeed) {
World::timeSpeed = zeno(World::timeSpeed, 1.0, 0.2);
World::timeSpeed = zeno(World::timeSpeed, 1.0, 0.4);
audio().Update(World::timeSpeed);

} else {
World::settingTimeSpeed = false;
}
Expand Down

0 comments on commit 2fd3d3c

Please sign in to comment.