Merge pull request #12569 from GregoireLD/dolphin-GBAProfilePathFix

Fix path-loading of GBA map configurations
This commit is contained in:
Admiral H. Curtiss 2024-04-13 02:46:07 +02:00 committed by GitHub
commit 107379bf74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -208,8 +208,9 @@ private:
if (m_id == "00000000")
return;
const std::array<std::tuple<std::string, std::string, Config::System>, 2> profile_info = {{
const std::array<std::tuple<std::string, std::string, Config::System>, 3> profile_info = {{
std::make_tuple("Pad", "GCPad", Config::System::GCPad),
std::make_tuple("GBA", "GBA", Config::System::GCPad),
std::make_tuple("Wiimote", "Wiimote", Config::System::WiiPad),
}};