X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.cpp;h=76d98efc7fbc2609053391f7b7894693523a6c9f;hb=5d1a76ae7725af998c6ee46adfe492c68ee1d34f;hp=0a5f5e73d4d1343c9eb770d16e09951af0c1aea2;hpb=06db9f596cd1c5aa4c0832b387882f7c74c1b4c0;p=l2e.git diff --git a/src/app/Application.cpp b/src/app/Application.cpp index 0a5f5e7..76d98ef 100644 --- a/src/app/Application.cpp +++ b/src/app/Application.cpp @@ -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); } }