Fixed warning: no previous extern declaration for non-static variable 'ResamplerFilter'

Fixes https://github.com/libsdl-org/SDL/issues/9556
main
Sam Lantinga 2024-04-15 16:16:32 -07:00
parent d51b53ef8f
commit bdd47f7770
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ static float Sinc(float *table, int x, int y)
return (s * y) / x;
}
Cubic ResamplerFilter[RESAMPLER_SAMPLES_PER_ZERO_CROSSING][RESAMPLER_SAMPLES_PER_FRAME];
static Cubic ResamplerFilter[RESAMPLER_SAMPLES_PER_ZERO_CROSSING][RESAMPLER_SAMPLES_PER_FRAME];
static void GenerateResamplerFilter()
{