diff -r b77e2d4d664b -r 03cd33624284 project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/StartGameActivity.java --- a/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/StartGameActivity.java Sun Feb 19 16:51:22 2012 +0100 +++ b/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/StartGameActivity.java Mon Feb 20 21:22:04 2012 +0100 @@ -56,17 +56,6 @@ public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); - SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this); - boolean firstTime = sharedPref.getBoolean("firstTime", true); - //Copy all the xml files to the device TODO only do first time launch of the app... - if(firstTime){ - sharedPref.edit().putBoolean("firstTime", false).commit(); - - Utils.resRawToFilesDir(this,R.array.schemes, Scheme.DIRECTORY_SCHEME); - Utils.resRawToFilesDir(this, R.array.weapons, Weapon.DIRECTORY_WEAPON); - Utils.resRawToFilesDir(this, R.array.teams, Team.DIRECTORY_TEAMS); - } - Scheme.parseBasicFlags(this); config = new GameConfig();