diff options
author | Chris Robinson <[email protected]> | 2010-12-03 23:08:26 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-12-03 23:08:26 -0800 |
commit | 1b7be672faf780db0266f5174af03b12f0a87b35 (patch) | |
tree | a54d3dc1dcc02aba6ad410049c6e1fb8831b6ca2 /OpenAL32 | |
parent | 9581325b9c573941bbac4b27824045a3274f383e (diff) |
No need to clamp the app-specified pitch
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alSource.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 1541bd89..0e066a22 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -219,8 +219,6 @@ AL_API ALvoid AL_APIENTRY alSourcef(ALuint source, ALenum eParam, ALfloat flValu if(flValue >= 0.0f) { Source->flPitch = flValue; - if(Source->flPitch < 0.001f) - Source->flPitch = 0.001f; Source->NeedsUpdate = AL_TRUE; } else |