From 07a581ba19fa03e0fd0cffa3e51def0a3bd06a18 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Wed, 17 Sep 2008 08:09:41 +0000 Subject: [PATCH] Fix build on Linux: commented out setting of background color. If I understood the code correctly, the color will be determined later (after sorting). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@555 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/GameListCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.cpp b/Source/Core/DolphinWX/Src/GameListCtrl.cpp index 2e86f28a60..35287b7d03 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/Src/GameListCtrl.cpp @@ -257,7 +257,7 @@ void CGameListCtrl::InsertItemInReportView(long _Index) wxListItem item; item.m_itemId = ItemIndex; item.SetColumn(COLUMN_COUNTRY); - item.SetBackgroundColour(color); + //item.SetBackgroundColour(color); DiscIO::IVolume::ECountry Country = rISOFile.GetCountry(); if (size_t(Country) < m_FlagImageIndex.size())