Change group map to an unordered_map
This commit is contained in:
+1
-1
@@ -349,7 +349,7 @@ void SongManager::AddGroup( RString sDir, RString sGroupDirName, Group* group )
|
||||
// Add the group to its series if the group has one and if the series exists
|
||||
if( group->GetSeries() != "" )
|
||||
{
|
||||
std::unordered_set<Group*>& series = m_mapSeriesToGroup[group->GetSeries()];
|
||||
std::unordered_set<Group*>& series = m_mapSeriesToGroups[group->GetSeries()];
|
||||
series.insert(group);
|
||||
}
|
||||
//m_sSongGroupBackgroundPaths.push_back( sBackgroundPath );
|
||||
|
||||
Reference in New Issue
Block a user