From 21ed07f5110f479e09e2ec50ca6aee0aa73da1ed Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Fri, 26 May 2006 09:55:25 +0000 Subject: [PATCH] don't allow input while transitioning --- stepmania/src/ScreenRanking.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/ScreenRanking.cpp b/stepmania/src/ScreenRanking.cpp index b198470f01..06cc2ba37d 100644 --- a/stepmania/src/ScreenRanking.cpp +++ b/stepmania/src/ScreenRanking.cpp @@ -138,6 +138,9 @@ void ScreenRanking::Input( const InputEventPlus &input ) { LOG->Trace( "ScreenRanking::Input()" ); + if( IsTransitioning() ) + return; + // If manually scrolling, then pass the input to Scree::Input so it will call Menu* if( (bool)MANUAL_SCROLLING ) Screen::Input( input );