diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-08-21 16:02:43 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-08-21 16:02:43 -0400 |
| commit | ca23318089a9bdcd9a7af93667dc30b1c73dc0e8 (patch) | |
| tree | b51ffd7e8293540ba2750d4f3937738ef76ab58b /Source/Android/src/org | |
| parent | 8b291b6b57e6e69e223992b78122d88c6c116df4 (diff) | |
[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.
Diffstat (limited to 'Source/Android/src/org')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/DolphinEmulator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/DolphinEmulator.java b/Source/Android/src/org/dolphinemu/dolphinemu/DolphinEmulator.java index 3dca1f5fbe..1429a57088 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/DolphinEmulator.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/DolphinEmulator.java @@ -126,9 +126,9 @@ public final class DolphinEmulator<MainActivity> extends Activity CopyAsset("setting-jpn.txt", WiiDir + File.separator + "setting-jpn.txt"); CopyAsset("setting-kor.txt", WiiDir + File.separator + "setting-kor.txt"); CopyAsset("setting-usa.txt", WiiDir + File.separator + "setting-usa.txt"); - - UserPreferences.LoadDolphinConfigToPrefs(this); } + + UserPreferences.LoadDolphinConfigToPrefs(this); } } |
