Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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.
  • Loading branch information
lioncash committed Aug 21, 2013
1 parent 8b291b6 commit ca23318
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -126,9 +126,9 @@ public void onCreate(Bundle savedInstanceState)
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);
}
}

Expand Down

0 comments on commit ca23318

Please sign in to comment.