From cf65199d86d49103f6f0e392c96fb6f2747eb88e Mon Sep 17 00:00:00 2001 From: Tyler Dunn Date: Fri, 20 May 2016 15:24:49 -0400 Subject: [PATCH] [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. --- .../app/src/main/java/org/dolphinemu/dolphinemu/model/Game.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/model/Game.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/model/Game.java index 500e329dd9..768c2e18c4 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/model/Game.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/model/Game.java @@ -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;