mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix SDKLauncher bug
Fix bug where SDK Launcher would display duplicate map names if server and client VPK's are installed within the same VPK directory.
This commit is contained in:
parent
fbcee16f97
commit
f0519efbb5
@ -563,11 +563,16 @@ void CUIBaseSurface::ParseMaps()
|
||||
}
|
||||
else if (strcmp(smRegexMatches[1].str().c_str(), "mp_common") == 0)
|
||||
{
|
||||
this->m_MapCombo->Items.Add("mp_lobby");
|
||||
if (!this->m_MapCombo->Items.Contains("mp_lobby"))
|
||||
{
|
||||
this->m_MapCombo->Items.Add("mp_lobby");
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
this->m_MapCombo->Items.Add(smRegexMatches[1].str().c_str());
|
||||
else if (!this->m_MapCombo->Items.Contains(smRegexMatches[1].str().c_str()))
|
||||
{
|
||||
this->m_MapCombo->Items.Add(smRegexMatches[1].str().c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -591,7 +596,10 @@ void CUIBaseSurface::ParsePlaylists()
|
||||
const auto& vcPlaylists = vRoot.childs.at("Playlists");
|
||||
for (auto [id, it] = std::tuple{ 1, vcPlaylists->childs.begin()}; it != vcPlaylists->childs.end(); id++, it++)
|
||||
{
|
||||
this->m_PlaylistCombo->Items.Add(it->first.c_str());
|
||||
if (!this->m_PlaylistCombo->Items.Contains(it->first.c_str()))
|
||||
{
|
||||
this->m_PlaylistCombo->Items.Add(it->first.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user