From: Steinar H. Gunderson Date: Thu, 28 Jul 2016 14:32:59 +0000 (+0200) Subject: Fix compilation for systems without SSE. X-Git-Tag: 1.3.4~15 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=f0881696640401612c1c86acfde341ec6b41dd7e Fix compilation for systems without SSE. --- 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 }