diff options
author | Chris Robinson <[email protected]> | 2017-05-03 03:34:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-05-03 03:34:44 -0700 |
commit | 732dee5375b2b2debf30ed81eb52c3cc058499fc (patch) | |
tree | 54d3715a756dddc24fb0863ccc7923fe34b84642 /OpenAL32 | |
parent | 444e9563b357b4e2af0d428afac9f87596aba9a6 (diff) |
Rename Zero-Order Hold to Nearest
A bit of a misnomer now since "Nearest" implies rounding (i.e. when the sample
offset is >= .5, it should pick the next sample being closer in time), but that
adds unnecessary complications.
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alState.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c index 231e2192..a7dc1006 100644 --- a/OpenAL32/alState.c +++ b/OpenAL32/alState.c @@ -48,7 +48,7 @@ static const ALchar alErrInvalidOp[] = "Invalid Operation"; static const ALchar alErrOutOfMemory[] = "Out of Memory"; /* Resampler strings */ -static const ALchar alPointResampler[] = "Zero-Order Hold (Point)"; +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)"; |