Skip to content

Commit

Permalink
Merge pull request #3855 from Tsunamical/master
Browse files Browse the repository at this point in the history
[Android] Fix extra character in screenshot folder path
  • Loading branch information
lioncash committed May 20, 2016
2 parents ca728d7 + cf65199 commit 63d2e6c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -27,7 +27,7 @@ public final class Game
public static final int COUNTRY_WORLD = 12;
public static final int COUNTRY_UNKNOWN = 13;

private static final String PATH_SCREENSHOT_FOLDER = Environment.getExternalStorageDirectory().getPath() + "/dolphin-emu/ScreenShots/";
private static final String PATH_SCREENSHOT_FOLDER = Environment.getExternalStorageDirectory().getPath() + "dolphin-emu/ScreenShots/";

private String mTitle;
private String mDescription;
Expand Down

0 comments on commit 63d2e6c

Please sign in to comment.