mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Fix loading the saved screen shots for Android version
Apparently the path was changed from using "/thump.png" to using "/gameId-#.png". We will always use the first screenshot for the game broswer wich will be "/gameId-1.png"
This commit is contained in:
@ -95,7 +95,7 @@ public final class Game
|
||||
{
|
||||
ContentValues values = new ContentValues();
|
||||
|
||||
String screenPath = PATH_SCREENSHOT_FOLDER + gameId + "/thumb.png";
|
||||
String screenPath = PATH_SCREENSHOT_FOLDER + gameId + "/" + gameId + "-1.png";
|
||||
|
||||
values.put(GameDatabase.KEY_GAME_PLATFORM, platform);
|
||||
values.put(GameDatabase.KEY_GAME_TITLE, title);
|
||||
|
Reference in New Issue
Block a user