mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-04 01:33:20 +00:00
Minor Fixes for Separate Update Folder (#1387)
* description + string fixes * fix use condition * clang format * updates now fully extract to game update folder * don't guarantee the overwrite game condition
This commit is contained in:
parent
08343faf01
commit
6fc7b3993d
5 changed files with 20 additions and 16 deletions
|
@ -26,8 +26,8 @@ public:
|
|||
GameInfo game;
|
||||
game.path = filePath;
|
||||
std::filesystem::path sce_folder_path = filePath / "sce_sys" / "param.sfo";
|
||||
std::filesystem::path game_update_path =
|
||||
std::filesystem::path(filePath.string() + "-UPDATE");
|
||||
std::filesystem::path game_update_path = filePath;
|
||||
game_update_path += "-UPDATE";
|
||||
if (std::filesystem::exists(game_update_path / "sce_sys" / "param.sfo")) {
|
||||
sce_folder_path = game_update_path / "sce_sys" / "param.sfo";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue