diff --git a/stepmania/src/ScreenOptions.cpp b/stepmania/src/ScreenOptions.cpp index 862674c8b8..b1dda98b54 100644 --- a/stepmania/src/ScreenOptions.cpp +++ b/stepmania/src/ScreenOptions.cpp @@ -796,13 +796,13 @@ void ScreenOptions::AfterChangeValueOrRow( PlayerNumber pn ) int iCurrentRow = m_iCurrentRow[pn]; OptionRow &row = *m_pRows[iCurrentRow]; - const bool ExitSelected = row.GetRowType() == OptionRow::RowType_Exit; + const bool bExitSelected = row.GetRowType() == OptionRow::RowType_Exit; if( p == pn || GAMESTATE->GetNumHumanPlayers() == 1 ) { - if( m_bWasOnExit[p] != ExitSelected ) + if( m_bWasOnExit[p] != bExitSelected ) { - m_bWasOnExit[p] = ExitSelected; - COMMAND( m_sprMore, ssprintf("Exit%sP%i", ExitSelected? "Selected":"Unselected", p+1) ); + m_bWasOnExit[p] = bExitSelected; + COMMAND( m_sprMore, ssprintf("Exit%sP%i", bExitSelected? "Selected":"Unselected", p+1) ); } } }