From 1bf1f3e040e52624d097a3553306c1e9ccfe550b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 4 Sep 2002 00:26:22 +0000 Subject: [PATCH] Don't cap update deltas. --- stepmania/src/StepMania.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index a2bcfe0572..c220f963c3 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -820,8 +820,9 @@ void Update() // This was a hack to fix timing issues with the old ScreenSelectSong // - if( fDeltaTime > 0.050f ) // we dropped a bunch of frames - fDeltaTime = 0.050f; + // See ScreenManager::Update comments for why we shouldn't do this. -glenn + //if( fDeltaTime > 0.050f ) // we dropped a bunch of frames + // fDeltaTime = 0.050f; if( INPUTMAN->IsBeingPressed( DeviceInput(DEVICE_KEYBOARD, DIK_TAB) ) ) fDeltaTime *= 4;