mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-03 23:38:07 +03:00
Fix loading GBA configurations
This commit is contained in:
parent
a50ab40a5f
commit
d17495a75a
1 changed files with 2 additions and 1 deletions
|
@ -208,8 +208,9 @@ private:
|
||||||
if (m_id == "00000000")
|
if (m_id == "00000000")
|
||||||
return;
|
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("Pad", "GCPad", Config::System::GCPad),
|
||||||
|
std::make_tuple("GBA", "GBA", Config::System::GCPad),
|
||||||
std::make_tuple("Wiimote", "Wiimote", Config::System::WiiPad),
|
std::make_tuple("Wiimote", "Wiimote", Config::System::WiiPad),
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue