summaryrefslogtreecommitdiffstats
path: root/src/common/zstd_compression.h
diff options
context:
space:
mode:
authorunknown <FreddyFunk@users.noreply.github.com>2019-02-10 10:28:04 +0100
committerFreddyFunk <FreddyFunk@users.noreply.github.com>2019-03-29 18:22:08 +0100
commitb4857e326fdf4c980c88ca399e7d12f99253777e (patch)
tree5e90dbe3f86317723ee15306cdf1de38d6405790 /src/common/zstd_compression.h
parentgl_shader_disk_cache: Fixup clang format (diff)
downloadyuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.tar
yuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.tar.gz
yuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.tar.bz2
yuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.tar.lz
yuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.tar.xz
yuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.tar.zst
yuzu-b4857e326fdf4c980c88ca399e7d12f99253777e.zip
Diffstat (limited to 'src/common/zstd_compression.h')
-rw-r--r--src/common/zstd_compression.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/zstd_compression.h b/src/common/zstd_compression.h
index c011ac34b..e0a64b035 100644
--- a/src/common/zstd_compression.h
+++ b/src/common/zstd_compression.h
@@ -34,11 +34,9 @@ std::vector<u8> CompressDataZSTDDefault(const u8* source, std::size_t source_siz
* Decompresses a source memory region with Zstandard and returns the uncompressed data in a vector.
*
* @param compressed the compressed source memory region.
- * @param uncompressed_size the size in bytes of the uncompressed data.
*
* @return the decompressed data.
*/
-std::vector<u8> DecompressDataZSTD(const std::vector<u8>& compressed,
- std::size_t uncompressed_size);
+std::vector<u8> DecompressDataZSTD(const std::vector<u8>& compressed);
} // namespace Common::Compression \ No newline at end of file