Android: Add Wii SYSCONF settings to GUI

Now that PR 8975 is merged, we can finally add this without hacks.

https://bugs.dolphin-emu.org/issues/11605
This commit is contained in:
JosJuice 2020-09-16 11:49:02 +02:00
parent 9c97654603
commit 6e6446be83
7 changed files with 104 additions and 3 deletions

View file

@ -25,6 +25,10 @@ static Config::Location GetLocation(JNIEnv* env, jstring file, jstring section,
{
system = Config::System::Main;
}
else if (decoded_file == "SYSCONF")
{
system = Config::System::SYSCONF;
}
else if (decoded_file == "GFX")
{
system = Config::System::GFX;