Skip to content

Commit

Permalink
hotfix: check for sfo file instead of the folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ElBread3 committed Oct 7, 2024
1 parent 74b61d9 commit 8546dae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt_gui/game_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class GameInfoClass : public QObject {
std::filesystem::path sce_folder_path = filePath / "sce_sys" / "param.sfo";
std::filesystem::path game_update_path =
std::filesystem::path(filePath.string() + "-UPDATE");
if (std::filesystem::exists(game_update_path)) {
sce_folder_path = (game_update_path / "sce_sys" / "param.sfo");
if (std::filesystem::exists(game_update_path / "sce_sys" / "param.sfo")) {
sce_folder_path = game_update_path / "sce_sys" / "param.sfo";
}

PSF psf;
Expand Down

0 comments on commit 8546dae

Please sign in to comment.