fix options screen always selects first choice in each row

This commit is contained in:
Chris Danford
2004-12-11 09:13:28 +00:00
parent 37cff8a09e
commit cc89b5a7b9
+1 -1
View File
@@ -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;