summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-25 22:53:31 +0200
committerLioncash <mathew1800@gmail.com>2019-05-25 22:53:33 +0200
commite5159cfb84ef3e987cc1a5595b9c009117b1b264 (patch)
tree9d4f6b0d25ddfc6a78f36c07dc1334387f0f053c /src
parentMerge pull request #2513 from lioncash/string (diff)
downloadyuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.tar
yuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.tar.gz
yuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.tar.bz2
yuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.tar.lz
yuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.tar.xz
yuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.tar.zst
yuzu-e5159cfb84ef3e987cc1a5595b9c009117b1b264.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 8592b1f44..62c090353 100644
--- a/src/core/loader/nso.cpp
+++ b/src/core/loader/nso.cpp
@@ -39,7 +39,7 @@ std::vector<u8> DecompressSegment(const std::vector<u8>& compressed_data,
const std::vector<u8> uncompressed_data =
Common::Compression::DecompressDataLZ4(compressed_data, header.size);
- ASSERT_MSG(uncompressed_data.size() == static_cast<int>(header.size), "{} != {}", header.size,
+ ASSERT_MSG(uncompressed_data.size() == header.size, "{} != {}", header.size,
uncompressed_data.size());
return uncompressed_data;