aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-12-03 23:08:26 -0800
committerChris Robinson <[email protected]>2010-12-03 23:08:26 -0800
commit1b7be672faf780db0266f5174af03b12f0a87b35 (patch)
treea54d3dc1dcc02aba6ad410049c6e1fb8831b6ca2 /OpenAL32
parent9581325b9c573941bbac4b27824045a3274f383e (diff)
No need to clamp the app-specified pitch
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/alSource.c2
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