From 99613291fbb0976e06bcbb73a3fd0ad09bf54080 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 8 Feb 2020 18:12:44 +0100 Subject: [PATCH] Restore original 16 KB LZ4 hash table size. --- common/tracy_lz4.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tracy_lz4.hpp b/common/tracy_lz4.hpp index 2299c108..c6428be2 100644 --- a/common/tracy_lz4.hpp +++ b/common/tracy_lz4.hpp @@ -122,7 +122,7 @@ LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; * Default value is 14, for 16KB, which nicely fits into Intel x86 L1 cache */ #ifndef LZ4_MEMORY_USAGE -# define LZ4_MEMORY_USAGE 12 +# define LZ4_MEMORY_USAGE 14 #endif