Skip to content

Commit

Permalink
front: Tweak game data folder name for readability.
Browse files Browse the repository at this point in the history
  • Loading branch information
littleguy77 committed Dec 21, 2014
1 parent 44cd5a2 commit f012c42
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -185,7 +185,7 @@ public GamePrefs( Context context, String romMd5, RomHeader header )
mPreferences = context.getSharedPreferences( sharedPrefsName, Context.MODE_PRIVATE );

// Game-specific data
gameDataDir = String.format( "%s/GameData/%s_%s_%s", userPrefs.userDataDir, header.name, header.countrySymbol, romMd5 );
gameDataDir = String.format( "%s/GameData/%s %s %s", userPrefs.userDataDir, header.name, header.countrySymbol, romMd5 );
sramDataDir = gameDataDir + "/SramData";
autoSaveDir = gameDataDir + "/AutoSaves";
slotSaveDir = gameDataDir + "/SlotSaves";
Expand Down

0 comments on commit f012c42

Please sign in to comment.