Skip to content

Commit

Permalink
Merge pull request #12569 from GregoireLD/dolphin-GBAProfilePathFix
Browse files Browse the repository at this point in the history
Fix path-loading of GBA map configurations
  • Loading branch information
AdmiralCurtiss committed Apr 13, 2024
2 parents bce2df7 + d17495a commit 107379b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp
Expand Up @@ -208,8 +208,9 @@ class INIGameConfigLayerLoader final : public Config::ConfigLayerLoader
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),
}};

Expand Down

0 comments on commit 107379b

Please sign in to comment.