diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-17 08:09:41 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-17 08:09:41 +0000 |
| commit | 07a581ba19fa03e0fd0cffa3e51def0a3bd06a18 (patch) | |
| tree | dc0e7338e8e1b84b0522a0b64a6a0e3d601e0170 /Source/Core | |
| parent | 1f6612067123230c017acf4703dc2ea5c6634b3a (diff) | |
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
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/Src/GameListCtrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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())
|
