From 9fcba58537334f80deb135757a04e8dbd38ce79b Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sun, 18 Mar 2018 21:56:45 +0100 Subject: [PATCH] Qt: sort the game list case insensitive initially --- rpcs3/rpcs3qt/game_list_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index 580ca3a277..28596ea20d 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -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.