mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-06 07:05:04 -06:00
Qt: sort the game list case insensitive initially
This commit is contained in:
parent
9f1fe5775e
commit
9fcba58537
@ -397,7 +397,7 @@ void game_list_frame::Refresh(const bool fromDrive, const bool scrollAfter)
|
|||||||
|
|
||||||
auto op = [](const GUI_GameInfo& game1, const GUI_GameInfo& game2)
|
auto op = [](const GUI_GameInfo& game1, const GUI_GameInfo& game2)
|
||||||
{
|
{
|
||||||
return game1.info.name < game2.info.name;
|
return qstr(game1.info.name).toLower() < qstr(game2.info.name).toLower();
|
||||||
};
|
};
|
||||||
|
|
||||||
// Sort by name at the very least.
|
// Sort by name at the very least.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user