From ecf016e80a5919582a448dfcd53224300f8ae5b9 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 16 Jul 2020 19:21:14 -0500 Subject: [PATCH] DolphinQt: Fix default sort direction of game list. --- Source/Core/DolphinQt/GameList/ListProxyModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/GameList/ListProxyModel.cpp b/Source/Core/DolphinQt/GameList/ListProxyModel.cpp index 8539dacceb..c51d467180 100644 --- a/Source/Core/DolphinQt/GameList/ListProxyModel.cpp +++ b/Source/Core/DolphinQt/GameList/ListProxyModel.cpp @@ -19,7 +19,7 @@ bool ListProxyModel::filterAcceptsRow(int source_row, const QModelIndex& source_ bool ListProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right) const { if (left.data(Qt::InitialSortOrderRole) != right.data(Qt::InitialSortOrderRole)) - return QSortFilterProxyModel::lessThan(right, left); + return QSortFilterProxyModel::lessThan(left, right); // If two items are otherwise equal, compare them by their title const auto right_title =