From f0881696640401612c1c86acfde341ec6b41dd7e Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 28 Jul 2016 16:32:59 +0200 Subject: [PATCH] Fix compilation for systems without SSE. --- filter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter.cpp b/filter.cpp index d737cb0..3974ebc 100644 --- a/filter.cpp +++ b/filter.cpp @@ -261,7 +261,7 @@ void StereoFilter::init(FilterType type, int new_order) memset(feedback, 0, sizeof(feedback)); #else for (unsigned i = 0; i < 2; ++i) { - filters[i].init(type, 0, new_order, 0); + filters[i].init(type, new_order); } #endif } -- 2.39.2