diff options
Diffstat (limited to 'apps/plugins/fft/math.h')
| -rw-r--r-- | apps/plugins/fft/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/fft/math.h b/apps/plugins/fft/math.h index ffacf1e..5545c49 100644 --- a/apps/plugins/fft/math.h +++ b/apps/plugins/fft/math.h @@ -3,7 +3,7 @@ #include <inttypes.h> #include <math.h> -#include "lib/fixedpoint.h" +#include "fixedpoint.h" #define Q_MUL(a, b, bits) (( (int64_t) (a) * (int64_t) (b) ) >> (bits)) #define Q15_MUL(a, b) Q_MUL(a,b,15) |