Update compress level to ZSTD_btultra2

This commit is contained in:
Kamay Xutax 2024-07-23 16:31:29 +02:00
parent a9bd881a56
commit 80d35c6194

View file

@ -1304,7 +1304,7 @@ unsigned int COM_GetIdealDestinationCompressionBufferSize_ZSTD(
return 4 + ZSTD_compressBound(uncompressedSize);
}
static constexpr int ZSTD_COMPRESSION_LEVEL = 999;
static constexpr int ZSTD_COMPRESSION_LEVEL = 22;
static auto g_pZSTDCCtx = ZSTD_createCCtx();
template<typename T>