Browse Source
Merge pull request #3710 from lioncash/nso
loader/nso: Resolve moves not occurring in DecompressSegment
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/loader/nso.cpp
|
|
|
@ -37,7 +37,7 @@ static_assert(sizeof(MODHeader) == 0x1c, "MODHeader has incorrect size."); |
|
|
|
|
|
|
|
std::vector<u8> DecompressSegment(const std::vector<u8>& compressed_data, |
|
|
|
const NSOSegmentHeader& header) { |
|
|
|
const std::vector<u8> uncompressed_data = |
|
|
|
std::vector<u8> uncompressed_data = |
|
|
|
Common::Compression::DecompressDataLZ4(compressed_data, header.size); |
|
|
|
|
|
|
|
ASSERT_MSG(uncompressed_data.size() == header.size, "{} != {}", header.size, |
|
|
|
|