From 75e2a589444aacb39d2fe5dd655a2c74bd0e83cc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 25 Apr 2007 22:27:36 +0000 Subject: [PATCH] ifx funky timer behavior --- stepmania/src/ScreenContinue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenContinue.cpp b/stepmania/src/ScreenContinue.cpp index fe04409d83..e6df9fe6eb 100644 --- a/stepmania/src/ScreenContinue.cpp +++ b/stepmania/src/ScreenContinue.cpp @@ -78,7 +78,7 @@ void ScreenContinue::Input( const InputEventPlus &input ) if( input.MenuI == MENU_BUTTON_START && input.type == IET_FIRST_PRESS && GAMESTATE->IsHumanPlayer(input.pn) ) { - m_MenuTimer->SetSeconds( m_MenuTimer->GetSeconds() - 1 ); + m_MenuTimer->SetSeconds( floorf(m_MenuTimer->GetSeconds()) - 0.0001f ); return; // handled }