From 770c153c767aa5123a44d0559e92fac65264a572 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Wed, 6 Dec 2006 07:42:43 +0100 Subject: [PATCH] Start using FT_ULTRA_BRUTE. --- src/p_w32pe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_w32pe.cpp b/src/p_w32pe.cpp index d286f381..a6e6cb1e 100644 --- a/src/p_w32pe.cpp +++ b/src/p_w32pe.cpp @@ -142,8 +142,8 @@ const int *PackW32Pe::getCompressionMethods(int method, int level) const const int *PackW32Pe::getFilters() const { static const int filters[] = { - 0x26, 0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12, - -1 }; + 0x26, 0x24, 0x16, 0x13, 0x14, 0x11, FT_ULTRA_BRUTE, 0x25, 0x15, 0x12, + FT_END }; return filters; }