mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-11 08:44:58 +00:00
Merge pull request #11142 from german77/avoid_crash
yuzu: Avoid reading broken games
This commit is contained in:
commit
6ffcc3d5d2
1 changed files with 5 additions and 1 deletions
|
@ -265,7 +265,11 @@ void GameListWorker::AddTitlesToGameList(GameListDir* parent_dir) {
|
||||||
std::vector<u8> icon;
|
std::vector<u8> icon;
|
||||||
std::string name;
|
std::string name;
|
||||||
u64 program_id = 0;
|
u64 program_id = 0;
|
||||||
loader->ReadProgramId(program_id);
|
const auto result = loader->ReadProgramId(program_id);
|
||||||
|
|
||||||
|
if (result != Loader::ResultStatus::Success) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
const PatchManager patch{program_id, system.GetFileSystemController(),
|
const PatchManager patch{program_id, system.GetFileSystemController(),
|
||||||
system.GetContentProvider()};
|
system.GetContentProvider()};
|
||||||
|
|
Loading…
Reference in a new issue