Don't cap update deltas.

This commit is contained in:
Glenn Maynard
2002-09-04 00:26:22 +00:00
parent 7b3491a7e9
commit 1bf1f3e040
+3 -2
View File
@@ -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;