From 5584fb1ab124072ac0f78159c9b82f8a4750ccdf Mon Sep 17 00:00:00 2001 From: Eukara Date: Fri, 30 Jul 2021 11:40:37 +0000 Subject: [PATCH] Don't clamp pitch at 2.0 for the AL backend. That's not required git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5997 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/snd_al.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/snd_al.c b/engine/client/snd_al.c index b3c1ab580..51d15a2f5 100644 --- a/engine/client/snd_al.c +++ b/engine/client/snd_al.c @@ -968,7 +968,7 @@ static void OpenAL_ChannelUpdate(soundcardinfo_t *sc, channel_t *chan, chanupdat } pitch = (float)chan->rate/(1<=0 + pitch = max(0.01, pitch); // OpenAL will clamp inside the implementation if need be, only min is important palSourcef(src, AL_PITCH, pitch); #ifdef USEEFX