diff options
| author | Matthew Parlane <parlane@gmail.com> | 2017-03-13 14:13:03 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-13 14:13:03 +1300 |
| commit | 40bc007c837cdcc9b9477859addab8b2c2ecff28 (patch) | |
| tree | 6845cd7f75b7e3c3eab4d4d15eee69ad09cf6ca6 /Source | |
| parent | 7932efc78a9470dbeb262a0a8e95035e63e50f63 (diff) | |
| parent | 2111e4dd92d87926edaccf280968462037d2d306 (diff) | |
Merge pull request #5070 from leoetlino/whoops
IOS/ES: Fix GetStoredContentsFromTMD
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/IOS/ES/ES.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 8a71a20291..5528cf1f97 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -758,7 +758,8 @@ static std::vector<IOS::ES::Content> GetStoredContentsFromTMD(const IOS::ES::TMD return path != "unk" && File::Exists(path); } 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; |
