Browse Source

gen_audio_resampler_filter: Use SDL_PI_F

Sylvain 2 years ago
parent
commit
41221777ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build-scripts/gen_audio_resampler_filter.c

+ 1 - 1
build-scripts/gen_audio_resampler_filter.c

@@ -84,7 +84,7 @@ kaiser_and_sinc(float *table, float *diffs, const int tablelen, const double bet
     }
 
     for (i = 1; i < tablelen; i++) {
-        const float x = (((float) i) / ((float) RESAMPLER_SAMPLES_PER_ZERO_CROSSING)) * ((float) M_PI);
+        const float x = (((float) i) / ((float) RESAMPLER_SAMPLES_PER_ZERO_CROSSING)) * SDL_PI_F;
         table[i] *= sinf(x) / x;
         diffs[i - 1] = table[i] - table[i - 1];
     }