mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
IOS/ES: Fix GetStoredContentsFromTMD
We were checking for the wrong files (title content directory instead of checking whether the content files themselves exist)... Whoops!
This commit is contained in:
parent
7932efc78a
commit
2111e4dd92
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue