From 38dc0d48962750fae524e24d954a6a1f6e207543 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 1 Mar 2006 08:37:04 +0000 Subject: [PATCH] cleanup --- stepmania/src/ScreenSelectMusic.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenSelectMusic.cpp b/stepmania/src/ScreenSelectMusic.cpp index 6c2d6b501f..364804120b 100644 --- a/stepmania/src/ScreenSelectMusic.cpp +++ b/stepmania/src/ScreenSelectMusic.cpp @@ -689,8 +689,10 @@ void ScreenSelectMusic::Input( const InputEventPlus &input ) input.type != IET_LEVEL_CHANGED && OPTIONS_MENU_AVAILABLE.GetValue() ) { - if(m_bGoToOptions) return; /* got it already */ - if(!m_bAllowOptionsMenu) return; /* not allowed */ + if( m_bGoToOptions ) + return; /* got it already */ + if( !m_bAllowOptionsMenu ) + return; /* not allowed */ if( !m_bAllowOptionsMenuRepeat && (input.type == IET_SLOW_REPEAT || input.type == IET_FAST_REPEAT ))