diff --git a/stepmania/src/ScreenEnding.cpp b/stepmania/src/ScreenEnding.cpp index a6fd61575d..f25ad24191 100644 --- a/stepmania/src/ScreenEnding.cpp +++ b/stepmania/src/ScreenEnding.cpp @@ -154,7 +154,8 @@ void ScreenEnding::Update( float fDeltaTime ) void ScreenEnding::Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI ) { - if( MenuI.IsValid() ) + bool bIsTransitioning = m_In.IsTransitioning() || m_Out.IsTransitioning(); + if( MenuI.IsValid() && !bIsTransitioning ) { switch( MenuI.button ) {