summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-18 20:44:42 +0200
committerGitHub <noreply@github.com>2020-04-18 20:44:42 +0200
commit89e512ca8d1ae310747a6554f0f5d46b2b738123 (patch)
tree48a8c71f65055053557486224afbf87678a4ac0f /src
parentMerge pull request #3715 from bunnei/fix-impl-fallthrough (diff)
parentloader/nso: Resolve moves not occurring in DecompressSegment (diff)
downloadyuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.tar
yuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.tar.gz
yuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.tar.bz2
yuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.tar.lz
yuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.tar.xz
yuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.tar.zst
yuzu-89e512ca8d1ae310747a6554f0f5d46b2b738123.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/loader/nso.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp
index 612ff9bf6..575330a86 100644
--- a/src/core/loader/nso.cpp
+++ b/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,