diff --git a/BleemSync.Services/GameService.cs b/BleemSync.Services/GameService.cs index 54a641e..2b4c990 100644 --- a/BleemSync.Services/GameService.cs +++ b/BleemSync.Services/GameService.cs @@ -11,7 +11,19 @@ public GameInfo GetGameInfo(int gameId) { var gamesDirectory = Utilities.Filesystem.GetGamesDirectory(); - var config = Configuration.LoadFromFile($"{gamesDirectory}\\{gameId}\\Game.ini"); + Configuration config = null; + + try + { + config = Configuration.LoadFromFile($"{gamesDirectory}\\{gameId}\\Game.ini"); + } catch { } + + try + { + config = Configuration.LoadFromFile($"{gamesDirectory}\\{gameId}\\GameData\\Game.ini"); + } + catch { } + var section = config["Game"]; var game = new GameInfo() diff --git a/README.md b/README.md index 3d9805f..427294a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ BleemSync is a relatively safe way to add games to your PlayStation Classic. 1. Supports multi-disc games ## Installation -1. Download the ZIP file from the [release page](https://github.com/pathartl/BleemSync/releases/tag/0.2.0) +1. Download the ZIP file from the [release page](https://github.com/pathartl/BleemSync/releases/latest) 1. Extract the contents to the root of your FAT32 or ext4 formatted USB flash drive 1. Name your flash drive `SONY`. This is a requirement.