fix options menu selection (used to move over by 2 per keypress)

This commit is contained in:
Andrew Wong
2003-08-24 21:18:18 +00:00
parent 805c9a2288
commit 2412276eb0
+3 -1
View File
@@ -737,7 +737,9 @@ void ScreenOptions::ChangeValue( PlayerNumber pn, int iDelta )
{
for( int p=0; p<NUM_PLAYERS; p++ )
{
if( m_InputMode == INPUTMODE_INDIVIDUAL && p != pn )
// if( m_InputMode == INPUTMODE_INDIVIDUAL && p != pn )
if( p != pn ) // don't check for INPUTMODE_INDIVIDUAL because on regular
// options it moves everything by 2
continue; // skip
int iCurRow = m_iCurrentRow[p];