diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-01-15 21:56:52 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-01-15 22:01:04 +0100 |
commit | b273b195762433ab015ec015061414aac4b9683e (patch) | |
tree | b1c7aefc989d3174099eeafd7ba8a9d0ac28d230 /src/core/loader/nsp.cpp | |
parent | content_archive: Add getter for logo section of NCA (diff) | |
download | yuzu-b273b195762433ab015ec015061414aac4b9683e.tar yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.gz yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.bz2 yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.lz yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.xz yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.zst yuzu-b273b195762433ab015ec015061414aac4b9683e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/nsp.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/loader/nsp.cpp b/src/core/loader/nsp.cpp index 7fcb12aa2..7da1f8960 100644 --- a/src/core/loader/nsp.cpp +++ b/src/core/loader/nsp.cpp @@ -166,4 +166,13 @@ ResultStatus AppLoader_NSP::ReadManualRomFS(FileSys::VirtualFile& file) { file = nca->GetRomFS(); return file == nullptr ? ResultStatus::ErrorNoRomFS : ResultStatus::Success; } + +ResultStatus AppLoader_NSP::ReadBanner(std::vector<u8>& buffer) { + return secondary_loader->ReadBanner(buffer); +} + +ResultStatus AppLoader_NSP::ReadLogo(std::vector<u8>& buffer) { + return secondary_loader->ReadLogo(buffer); +} + } // namespace Loader |