From cc89b5a7b901e331160fdc3bc687b946c558a334 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 11 Dec 2004 09:13:28 +0000 Subject: [PATCH] fix options screen always selects first choice in each row --- stepmania/src/GameCommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/GameCommand.cpp b/stepmania/src/GameCommand.cpp index 996a38adaf..4915bdb6d4 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -110,7 +110,7 @@ bool GameCommand::DescribesCurrentMode( PlayerNumber pn ) const return false; if( m_pTrail && GAMESTATE->m_pCurTrail[pn] != m_pTrail ) return false; - if( m_SortOrder && GAMESTATE->m_SortOrder != m_SortOrder ) + if( m_SortOrder != SORT_INVALID && GAMESTATE->m_SortOrder != m_SortOrder ) return false; return true;