]> git.sesse.net Git - nageru/commitdiff
Fix compilation for systems without SSE.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 28 Jul 2016 14:32:59 +0000 (16:32 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 28 Jul 2016 14:32:59 +0000 (16:32 +0200)
filter.cpp

index d737cb086565170a286bb27f9312e4a84a80c0de..3974ebca0f09e09ee431d67ce4b8a36bfc834736 100644 (file)
@@ -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
 }