mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 04:36:18 +00:00
Merge pull request #4941 from JosJuice/no-compressed-color
DolphinWX: Don't use a special color for compressed games
This commit is contained in:
commit
f7a09c41a1
5 changed files with 4 additions and 22 deletions
|
@ -207,8 +207,6 @@ void SConfig::SaveGameListSettings(IniFile& ini)
|
|||
gamelist->Set("ListSort", m_ListSort);
|
||||
gamelist->Set("ListSortSecondary", m_ListSort2);
|
||||
|
||||
gamelist->Set("ColorCompressed", m_ColorCompressed);
|
||||
|
||||
gamelist->Set("ColumnPlatform", m_showSystemColumn);
|
||||
gamelist->Set("ColumnBanner", m_showBannerColumn);
|
||||
gamelist->Set("ColumnNotes", m_showMakerColumn);
|
||||
|
@ -526,9 +524,6 @@ void SConfig::LoadGameListSettings(IniFile& ini)
|
|||
gamelist->Get("ListSort", &m_ListSort, 3);
|
||||
gamelist->Get("ListSortSecondary", &m_ListSort2, 0);
|
||||
|
||||
// Determines if compressed games display in blue
|
||||
gamelist->Get("ColorCompressed", &m_ColorCompressed, true);
|
||||
|
||||
// Gamelist columns toggles
|
||||
gamelist->Get("ColumnPlatform", &m_showSystemColumn, true);
|
||||
gamelist->Get("ColumnBanner", &m_showBannerColumn, true);
|
||||
|
|
|
@ -289,9 +289,6 @@ struct SConfig : NonCopyable
|
|||
bool m_showSizeColumn;
|
||||
bool m_showStateColumn;
|
||||
|
||||
// Toggles whether compressed titles show up in blue in the game list
|
||||
bool m_ColorCompressed;
|
||||
|
||||
std::string m_WirelessMac;
|
||||
bool m_PauseMovie;
|
||||
bool m_ShowLag;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue