Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:kosme/arduinoFFT into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kosme committed Nov 24, 2024
2 parents a1abeab + 6948a41 commit 0913ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arduinoFFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void ArduinoFFT<T>::compute(T *vReal, T *vImag, uint_fast16_t samples,
swap(&vReal[i], &vReal[j]);
#ifdef COMPLEX_INPUT
swap(&vImag[i], &vImag[j]);
#else
#else
if (dir == FFTDirection::Reverse)
swap(&vImag[i], &vImag[j]);
#endif
Expand Down

0 comments on commit 0913ec2

Please sign in to comment.