From 1ea420e8a83620c351a98153d63be05a0c815062 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Fri, 23 Oct 2009 23:51:00 +0000 Subject: [PATCH] Better stop than just pause. --- code/client/snd_openal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c index f7d9aef5..7d9e66df 100644 --- a/code/client/snd_openal.c +++ b/code/client/snd_openal.c @@ -1359,7 +1359,7 @@ void S_AL_SrcUpdate( void ) else if(curSource->isPlaying) { S_AL_NewLoopMaster(curSource, qfalse); - qalSourcePause(curSource->alSource); + qalSourceStop(curSource->alSource); curSource->isPlaying = qfalse; }