Merge pull request #9088 from JosJuice/android-sysconf

Android: Add Wii SYSCONF settings to GUI
This commit is contained in:
JMC47 2020-09-22 14:03:56 -04:00 committed by GitHub
commit f33767f19c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 134 additions and 23 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;