mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
[Android] Fixed a bug where the config files might not load correctly upon launch. If the initial files existed, it wouldn't load the configs. This fixes that.
If the files don't exist they will be copied (in the previous block) and everything will be fine.
This commit is contained in:
parent
8b291b6b57
commit
ca23318089
@ -126,9 +126,9 @@ public final class DolphinEmulator<MainActivity> extends Activity
|
|||||||
CopyAsset("setting-jpn.txt", WiiDir + File.separator + "setting-jpn.txt");
|
CopyAsset("setting-jpn.txt", WiiDir + File.separator + "setting-jpn.txt");
|
||||||
CopyAsset("setting-kor.txt", WiiDir + File.separator + "setting-kor.txt");
|
CopyAsset("setting-kor.txt", WiiDir + File.separator + "setting-kor.txt");
|
||||||
CopyAsset("setting-usa.txt", WiiDir + File.separator + "setting-usa.txt");
|
CopyAsset("setting-usa.txt", WiiDir + File.separator + "setting-usa.txt");
|
||||||
|
|
||||||
UserPreferences.LoadDolphinConfigToPrefs(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UserPreferences.LoadDolphinConfigToPrefs(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user