style cleanup: use FOREACH_ENUM( X, x ) everywhere instead of FOREACH_X( x ) for consistency
The FOREACH_X defines are not very useful, and they were created back before FOREACH_ENUM was convenient.
This commit is contained in:
@@ -228,9 +228,9 @@ Steps* SongUtil::GetClosestNotes( const Song *pSong, StepsType st, Difficulty dc
|
||||
* on this; see BMSLoader::SlideDuplicateDifficulties.) */
|
||||
void SongUtil::AdjustDuplicateSteps( Song *pSong )
|
||||
{
|
||||
FOREACH_StepsType( st )
|
||||
FOREACH_ENUM( StepsType, st )
|
||||
{
|
||||
FOREACH_Difficulty( dc )
|
||||
FOREACH_ENUM( Difficulty, dc )
|
||||
{
|
||||
if( dc == Difficulty_Edit )
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user