summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-20 02:49:27 +0200
committerLioncash <mathew1800@gmail.com>2018-07-20 02:49:27 +0200
commita25c5b982a4406851ee1de18f09061a30d078b5b (patch)
tree98dc8483291bfbd6300ed7b62a5fc3095c34a362 /src/core
parentMerge pull request #726 from lioncash/overload (diff)
downloadyuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.tar
yuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.tar.gz
yuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.tar.bz2
yuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.tar.lz
yuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.tar.xz
yuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.tar.zst
yuzu-a25c5b982a4406851ee1de18f09061a30d078b5b.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/loader/nso.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp
index c66561bf4..b25810e07 100644
--- a/src/core/loader/nso.cpp
+++ b/src/core/loader/nso.cpp
@@ -79,19 +79,6 @@ static std::vector<u8> DecompressSegment(const std::vector<u8>& compressed_data,
return uncompressed_data;
}
-static std::vector<u8> ReadSegment(FileUtil::IOFile& file, const NsoSegmentHeader& header,
- size_t compressed_size) {
- std::vector<u8> compressed_data(compressed_size);
-
- file.Seek(header.offset, SEEK_SET);
- if (compressed_size != file.ReadBytes(compressed_data.data(), compressed_size)) {
- LOG_CRITICAL(Loader, "Failed to read {} NSO LZ4 compressed bytes", compressed_size);
- return {};
- }
-
- return DecompressSegment(compressed_data, header);
-}
-
static constexpr u32 PageAlignSize(u32 size) {
return (size + Memory::PAGE_MASK) & ~Memory::PAGE_MASK;
}