aboutsummaryrefslogtreecommitdiff
path: root/common/fft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/fft.cpp')
-rw-r--r--common/fft.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fft.cpp b/common/fft.cpp
index 27a04abb6a..a750792047 100644
--- a/common/fft.cpp
+++ b/common/fft.cpp
@@ -51,7 +51,7 @@ FFT::FFT(int bits, int inverse) : _bits(bits), _inverse(inverse) {
if (i+4 <= _bits)
_cosTables[i] = new Common::CosineTable(i+4);
else
- _cosTables[i] = 0;
+ _cosTables[i] = nullptr;
}
}