fix: pressing start while tweening to the sort menu would select a song;
this would cause GAMESTATE->m_SortOrder to be set to SORT_MODE_MENU while in gameplay, which is wrong
This commit is contained in:
@@ -1302,8 +1302,12 @@ bool MusicWheel::Select() // return true if this selection ends the screen
|
|||||||
{
|
{
|
||||||
LOG->Trace( "MusicWheel::Select()" );
|
LOG->Trace( "MusicWheel::Select()" );
|
||||||
|
|
||||||
if( m_WheelState == STATE_ROULETTE_SLOWING_DOWN )
|
switch( m_WheelState )
|
||||||
|
{
|
||||||
|
case STATE_FLYING_OFF_BEFORE_NEXT_SORT:
|
||||||
|
case STATE_ROULETTE_SLOWING_DOWN:
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
m_Moving = 0;
|
m_Moving = 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user