mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-10 04:12:23 +00:00
Merge pull request #5285 from spycrab/fr_9952
Make title column toggleable (Issue #9952)
This commit is contained in:
commit
dd31a403db
6 changed files with 36 additions and 7 deletions
|
@ -216,6 +216,7 @@ void SConfig::SaveGameListSettings(IniFile& ini)
|
|||
|
||||
gamelist->Set("ColumnPlatform", m_showSystemColumn);
|
||||
gamelist->Set("ColumnBanner", m_showBannerColumn);
|
||||
gamelist->Set("ColumnTitle", m_showTitleColumn);
|
||||
gamelist->Set("ColumnNotes", m_showMakerColumn);
|
||||
gamelist->Set("ColumnFileName", m_showFileNameColumn);
|
||||
gamelist->Set("ColumnID", m_showIDColumn);
|
||||
|
@ -536,6 +537,7 @@ void SConfig::LoadGameListSettings(IniFile& ini)
|
|||
// Gamelist columns toggles
|
||||
gamelist->Get("ColumnPlatform", &m_showSystemColumn, true);
|
||||
gamelist->Get("ColumnBanner", &m_showBannerColumn, true);
|
||||
gamelist->Get("ColumnTitle", &m_showTitleColumn, true);
|
||||
gamelist->Get("ColumnNotes", &m_showMakerColumn, true);
|
||||
gamelist->Get("ColumnFileName", &m_showFileNameColumn, false);
|
||||
gamelist->Get("ColumnID", &m_showIDColumn, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue