git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3332 8ced0084-cf51-0410-be5f-012b33b47a6e

This commit is contained in:
LPFaint99 2009-06-06 06:22:36 +00:00
parent 2ff53b2198
commit ff9128e129
2 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,7 @@ void SConfig::SaveSettings()
// Game List Control
ini.Set("GameList", "ListDrives", m_ListDrives);
ini.Set("GameList", "ListWad", m_ListWad);
ini.Set("GameList", "ListWii", m_ListWii);
ini.Set("GameList", "ListGC", m_ListGC);
ini.Set("GameList", "ListJap", m_ListJap);
@ -200,6 +201,7 @@ void SConfig::LoadSettings()
// Game List Control
ini.Get("GameList", "ListDrives", &m_ListDrives, false);
ini.Get("GameList", "ListWad", &m_ListWad, true);
ini.Get("GameList", "ListWii", &m_ListWii, true);
ini.Get("GameList", "ListGC", &m_ListGC, true);
ini.Get("GameList", "ListJap", &m_ListJap, true);

View File

@ -71,6 +71,7 @@ struct SConfig
bool m_InterfaceLogWindow;
bool m_InterfaceConsole;
bool m_ListDrives;
bool m_ListWad;
bool m_ListWii;
bool m_ListGC;
bool m_ListPal;