From 6653a643541e98daeaf49c1c4c66096a4cb3cc49 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 13 Aug 2007 19:20:40 +0000 Subject: [PATCH] style --- stepmania/src/SongManager.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stepmania/src/SongManager.cpp b/stepmania/src/SongManager.cpp index 3aa13ed165..6fb47b0ee3 100644 --- a/stepmania/src/SongManager.cpp +++ b/stepmania/src/SongManager.cpp @@ -591,27 +591,27 @@ int SongManager::GetNumUnlockedSongs() const int SongManager::GetNumSelectableAndUnlockedSongs() const { - int num = 0; + int iNum = 0; FOREACH_CONST( Song*, m_pSongs, i ) { if( UNLOCKMAN->SongIsLocked( *i ) ) continue; if( (*i)->GetDisplayed() != Song::SHOW_ALWAYS ) continue; - num++; + iNum++; } - return num; + return iNum; } int SongManager::GetNumAdditionalSongs() const { - int num = 0; + int iNum = 0; FOREACH_CONST( Song*, m_pSongs, i ) { if( WasLoadedFromAdditionalSongs( *i ) ) - num++; + iNum++; } - return num; + return iNum; } int SongManager::GetNumSongGroups() const