Merge pull request #5070 from leoetlino/whoops

IOS/ES: Fix GetStoredContentsFromTMD
This commit is contained in:
Matthew Parlane 2017-03-13 14:13:03 +13:00 committed by GitHub
commit 40bc007c83
1 changed files with 2 additions and 1 deletions

View File

@ -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;