diff --git a/stepmania/src/ScreenOptionsEditCourseEntry.cpp b/stepmania/src/ScreenOptionsEditCourseEntry.cpp index 317d8b0798..dc9fdaad94 100644 --- a/stepmania/src/ScreenOptionsEditCourseEntry.cpp +++ b/stepmania/src/ScreenOptionsEditCourseEntry.cpp @@ -74,8 +74,8 @@ void ScreenOptionsEditCourseEntry::Init() vector vsSongGroups; SONGMAN->GetSongGroupNames( vsSongGroups ); def.m_vsChoices.push_back( "(any)" ); - FOREACH_CONST( CString, vsSongGroups, s ) - def.m_vsChoices.push_back( *s ); + FOREACH_CONST( CString, vsSongGroups, song ) + def.m_vsChoices.push_back( *song ); vDefs.push_back( def ); vHands.push_back( NULL );