From 9eb0fcb944fb3a22c6461a9dafaae1e100d18f0a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 14 Jan 2006 09:15:09 +0000 Subject: [PATCH] style --- stepmania/src/ScreenOptions.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) ); } } }