diff options
author | Chris Robinson <[email protected]> | 2017-08-25 05:52:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-25 05:52:19 -0700 |
commit | 561e95528f55be2837541239236281c4cd63d728 (patch) | |
tree | 6d57db817feef0cc132293e0c319dd2796a8bc41 /OpenAL32/alState.c | |
parent | 9ea32713b57fd95832172de5e8d8534339bb646b (diff) |
Rename the bsinc resampler to bsinc12
Diffstat (limited to 'OpenAL32/alState.c')
-rw-r--r-- | OpenAL32/alState.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c index a7dc1006..19b0996c 100644 --- a/OpenAL32/alState.c +++ b/OpenAL32/alState.c @@ -51,7 +51,7 @@ static const ALchar alErrOutOfMemory[] = "Out of Memory"; static const ALchar alPointResampler[] = "Nearest"; static const ALchar alLinearResampler[] = "Linear"; static const ALchar alSinc4Resampler[] = "4-Point Sinc"; -static const ALchar alBSincResampler[] = "Band-limited Sinc (12/24)"; +static const ALchar alBSinc12Resampler[] = "Band-limited Sinc (12/24)"; AL_API ALvoid AL_APIENTRY alEnable(ALenum capability) { @@ -750,7 +750,7 @@ AL_API const ALchar* AL_APIENTRY alGetStringiSOFT(ALenum pname, ALsizei index) { const char *ResamplerNames[] = { alPointResampler, alLinearResampler, - alSinc4Resampler, alBSincResampler, + alSinc4Resampler, alBSinc12Resampler, }; const ALchar *value = NULL; ALCcontext *context; |