Android: Get rid of LegacyIntSetting

The only settings that were using LegacyIntSetting are now in the new
config system, so there's no reason to have LegacyIntSetting anymore.
This commit is contained in:
JosJuice
2022-02-18 21:58:05 +01:00
parent 0c78167404
commit 1b76171a27
6 changed files with 35 additions and 84 deletions

View File

@ -38,6 +38,10 @@ static Config::Location GetLocation(JNIEnv* env, jstring file, jstring section,
{
system = Config::System::Logger;
}
else if (decoded_file == "WiimoteNew")
{
system = Config::System::WiiPad;
}
else
{
ASSERT(false);