diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index d91608d00b..48c546852b 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -912,22 +912,9 @@ void MusicWheel::Update( float fDeltaTime ) m_fTimeLeftInState = 0; if( (GAMESTATE->IsExtraStage() && !PREFSMAN->m_bPickExtraStage) || GAMESTATE->IsExtraStage2() ) { -// if ( m_bUseRandomExtra ) -// { -// SOUNDMAN->StopMusic(); -// m_soundExpand.Play(); -// m_WheelState = STATE_ROULETTE_SPINNING; -// m_SortOrder = SORT_GROUP; -// m_MusicSortDisplay.SetDiffuse( RageColor(1,1,1,0) ); -// m_MusicSortDisplay.SetEffectNone(); -// BuildWheelItemDatas( m_WheelItemDatas[SORT_GROUP], SORT_GROUP, true ); -// } -// else - { - m_WheelState = STATE_LOCKED; - m_soundStart.Play(); - m_fLockedWheelVelocity = 0; - } + m_WheelState = STATE_LOCKED; + m_soundStart.Play(); + m_fLockedWheelVelocity = 0; } else { diff --git a/stepmania/src/MusicWheel.h b/stepmania/src/MusicWheel.h index da3ddc6d82..2a74c78e9e 100644 --- a/stepmania/src/MusicWheel.h +++ b/stepmania/src/MusicWheel.h @@ -118,8 +118,6 @@ protected: float m_fTimeLeftInState; float m_fPositionOffsetFromSelection; -// bool m_bUseRandomExtra; - RageSound m_soundChangeMusic; RageSound m_soundChangeSort; RageSound m_soundExpand;