this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

OOB check

alice 1227609c 81534c9c

+4
+4
src/ext/fft.c
··· 281 281 282 282 double tic_api_fft(tic_mem* memory, s32 freq/*, bool bSmoothing, bool bNormalization*/) 283 283 { 284 + if (freq < 0 || freq >= FFT_SIZE) { 285 + // Handle out-of-bounds frequency request, possibly log error or return a default value 286 + return 0.0; // Assuming 0.0 is a safe default value for out-of-bounds frequency 287 + } 284 288 // if (bSmoothing) return fftSmoothingData[freq]; 285 289 // return fftData[freq]; 286 290 // return fftSmoothingData[freq];