[Android] Fix extra character in screenshot folder path

Environment.getExternalStorageDirectory().getPath() covers the end of the path with a slash, get rid of the extra slash to fix the path.
This commit is contained in:
Tyler Dunn 2016-05-20 15:24:49 -04:00
parent ca728d792a
commit cf65199d86
1 changed files with 1 additions and 1 deletions

View File

@ -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;