commit f73f703f66f3e3943339b6ce81d0692fb498d8e8
parent 2bc9424db8f4bd38b0e04b605847859a00494ef2
Author: Matt Demanett <matt@demanett.net>
Date: Sun, 22 Apr 2018 22:37:42 -0400
Merge branch 'master' of github.com:bogaudio/BogaudioModules
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/dsp/filter.hpp b/src/dsp/filter.hpp
@@ -148,7 +148,7 @@ struct LPFDecimator : Decimator {
struct CICDecimator : Decimator {
typedef int64_t T;
- static constexpr T scale = 1l << 32;
+ static constexpr T scale = ((T)1) << 32;
int _stages;
T* _integrators;
T* _combs;