Change group map to an unordered_map

This commit is contained in:
Crash Cringle
2025-03-02 13:39:38 -05:00
committed by teejusb
parent 830bf1bb8d
commit 218d5734a3
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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 );