diff --git a/Source/Core/Core/Src/ConfigManager.cpp b/Source/Core/Core/Src/ConfigManager.cpp index 187a188e81..663b7bbe5c 100644 --- a/Source/Core/Core/Src/ConfigManager.cpp +++ b/Source/Core/Core/Src/ConfigManager.cpp @@ -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); diff --git a/Source/Core/Core/Src/ConfigManager.h b/Source/Core/Core/Src/ConfigManager.h index 73e46b793d..fa9bd39854 100644 --- a/Source/Core/Core/Src/ConfigManager.h +++ b/Source/Core/Core/Src/ConfigManager.h @@ -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;