]> git.localhorst.tv Git - l2e.git/blobdiff - src/app/Application.cpp
switched geometric scalars from floating to fixed
[l2e.git] / src / app / Application.cpp
index 0a5f5e73d4d1343c9eb770d16e09951af0c1aea2..76d98efc7fbc2609053391f7b7894693523a6c9f 100644 (file)
@@ -175,8 +175,8 @@ void Application::HandleEvents() {
 void Application::UpdateWorld(Uint32 deltaT) {
        if (!CurrentState()) return;
        for (Uint32 i(0); i < deltaT && !StateChangePending(); ++i) {
-               CurrentState()->PhysicsTimers().Update(0.001f);
-               CurrentState()->UpdateWorld(0.001f);
+               CurrentState()->PhysicsTimers().Update(1);
+               CurrentState()->UpdateWorld(1);
        }
 }