From 5283a1dcc6281b761453c4637796729c69fe3890 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 11 Jan 2022 22:29:03 +0100 Subject: [PATCH] Config: Add "DSP" to GetINIToSectionMap The "DSP" game INI section name was supported by BootManager.cpp before the section was ported to the new config system. For backwards compatibility, we should keep supporting it. Should fix https://bugs.dolphin-emu.org/issues/12792 --- Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp b/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp index 812b10269b..a626200f5d 100644 --- a/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp +++ b/Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp @@ -90,6 +90,7 @@ static const INIToSectionMap& GetINIToSectionMap() { static const INIToSectionMap ini_to_section = { {"Core", {Config::System::Main, "Core"}}, + {"DSP", {Config::System::Main, "DSP"}}, {"Display", {Config::System::Main, "Display"}}, {"Video_Hardware", {Config::System::GFX, "Hardware"}}, {"Video_Settings", {Config::System::GFX, "Settings"}},