Merge pull request #1005 from DarkLordZach/registered-fmt

file_sys: Add support for registration format
This commit is contained in:
bunnei
2018-08-15 23:11:58 -04:00
committed by GitHub
34 changed files with 1437 additions and 80 deletions

View File

@ -96,6 +96,10 @@ VirtualDir XCI::GetLogoPartition() const {
return GetPartition(XCIPartition::Logo);
}
const std::vector<std::shared_ptr<NCA>>& XCI::GetNCAs() const {
return ncas;
}
std::shared_ptr<NCA> XCI::GetNCAByType(NCAContentType type) const {
const auto iter =
std::find_if(ncas.begin(), ncas.end(),