mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Qt: sort the game list case insensitive initially
This commit is contained in:
parent
9f1fe5775e
commit
9fcba58537
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
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.
|
||||
|
|
Loading…
Add table
Reference in a new issue