Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #4390 from SeannyM/android-screenshot
Browse files Browse the repository at this point in the history
Android: Fix screenshots on game list
  • Loading branch information
degasus committed Oct 26, 2016
2 parents 9838912 + f257c33 commit 3fe5e6d
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_WORLD = 12;
public static final int COUNTRY_UNKNOWN = 13; 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 = "file://" + Environment.getExternalStorageDirectory().getPath() + "/dolphin-emu/ScreenShots/";


private String mTitle; private String mTitle;
private String mDescription; private String mDescription;
Expand Down

0 comments on commit 3fe5e6d

Please sign in to comment.