mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #5070 from leoetlino/whoops
IOS/ES: Fix GetStoredContentsFromTMD
This commit is contained in:
@ -758,7 +758,8 @@ static std::vector<IOS::ES::Content> GetStoredContentsFromTMD(const IOS::ES::TMD
|
|||||||
return path != "unk" && File::Exists(path);
|
return path != "unk" && File::Exists(path);
|
||||||
}
|
}
|
||||||
return File::Exists(
|
return File::Exists(
|
||||||
Common::GetTitleContentPath(tmd.GetTitleId(), Common::FROM_SESSION_ROOT));
|
Common::GetTitleContentPath(tmd.GetTitleId(), Common::FROM_SESSION_ROOT) +
|
||||||
|
StringFromFormat("%08x.app", content.id));
|
||||||
});
|
});
|
||||||
|
|
||||||
return stored_contents;
|
return stored_contents;
|
||||||
|
Reference in New Issue
Block a user