From 71bc1f39e044e50e0bcd5e2fb3176dc8a17994e9 Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Wed, 11 Mar 2015 20:09:33 -0400 Subject: [PATCH] Fix missing parenthesis. --- Source/Core/DolphinWX/GameListCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index f5c32d3719..e04b9e6347 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -133,7 +133,7 @@ static int CompareGameListItems(const GameListItem* iso1, const GameListItem* is if (iso1->GetRevision() != iso2->GetRevision()) return t * (iso1->GetRevision() > iso2->GetRevision() ? 1 : -1); if (iso1->IsDiscTwo() != iso2->IsDiscTwo()) - return t * iso1->IsDiscTwo() ? 1 : -1; + return t * (iso1->IsDiscTwo() ? 1 : -1); } return strcasecmp(iso1->GetName(indexOne).c_str(), iso2->GetName(indexOther).c_str()) * t;