This commit is contained in:
DanielSvoboda 2025-01-30 15:23:08 -03:00
parent 5d8e9f3b42
commit f49e55c0ed

View File

@ -112,10 +112,7 @@ void GameListFrame::PopulateGameList(bool isInitialPopulation) {
ResizeIcons(icon_size);
if (isInitialPopulation) {
std::sort(m_game_info->m_games.begin(), m_game_info->m_games.end(),
[this](const GameInfo& a, const GameInfo& b) {
return CompareStringsAscending(a, b, 1); // Column 1 = Name
});
SortNameAscending(1); // Column 1 = Name
ResizeIcons(icon_size);
}