diff options
| author | 2019-01-15 15:56:52 -0500 | |
|---|---|---|
| committer | 2019-01-15 16:01:04 -0500 | |
| commit | b273b195762433ab015ec015061414aac4b9683e (patch) | |
| tree | b1c7aefc989d3174099eeafd7ba8a9d0ac28d230 /src/core/loader/xci.cpp | |
| parent | content_archive: Add getter for logo section of NCA (diff) | |
| download | yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.gz yuzu-b273b195762433ab015ec015061414aac4b9683e.tar.xz yuzu-b273b195762433ab015ec015061414aac4b9683e.zip | |
loader: Propagate NCA logo section to ReadBanner and ReadLogo
Diffstat (limited to 'src/core/loader/xci.cpp')
| -rw-r--r-- | src/core/loader/xci.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/loader/xci.cpp b/src/core/loader/xci.cpp index ff60a3756..89f7bbf77 100644 --- a/src/core/loader/xci.cpp +++ b/src/core/loader/xci.cpp | |||
| @@ -137,4 +137,12 @@ ResultStatus AppLoader_XCI::ReadManualRomFS(FileSys::VirtualFile& file) { | |||
| 137 | return file == nullptr ? ResultStatus::ErrorNoRomFS : ResultStatus::Success; | 137 | return file == nullptr ? ResultStatus::ErrorNoRomFS : ResultStatus::Success; |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | ResultStatus AppLoader_XCI::ReadBanner(std::vector<u8>& buffer) { | ||
| 141 | return nca_loader->ReadBanner(buffer); | ||
| 142 | } | ||
| 143 | |||
| 144 | ResultStatus AppLoader_XCI::ReadLogo(std::vector<u8>& buffer) { | ||
| 145 | return nca_loader->ReadLogo(buffer); | ||
| 146 | } | ||
| 147 | |||
| 140 | } // namespace Loader | 148 | } // namespace Loader |