From 745ba9fcffb3c7c86db5e6bdfa85ff3534f6b133 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Sun, 30 Apr 2017 15:02:50 +0200 Subject: [PATCH] Fix maxima for the levels of LZ4 and LZ5. --- CPP/7zip/UI/GUI/CompressDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CPP/7zip/UI/GUI/CompressDialog.cpp b/CPP/7zip/UI/GUI/CompressDialog.cpp index 2908d5ac..af6a4ba2 100644 --- a/CPP/7zip/UI/GUI/CompressDialog.cpp +++ b/CPP/7zip/UI/GUI/CompressDialog.cpp @@ -253,7 +253,7 @@ static const CFormatInfo g_Formats[] = }, { "lz4", - (1 << 0) | (1 << 1) | (1 << 3) | (1 << 7) | (1 << 11) | (1 << 16), + (1 << 0) | (1 << 1) | (1 << 3) | (1 << 6) | (1 << 9) | (1 << 12), METHODS_PAIR(g_Lz4Methods), false, false, true, false, false, false },