aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-10-23 23:51:00 +0000
committerthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-10-23 23:51:00 +0000
commit648cb4e7cd39041aef8beb4ff1f8af5186332072 (patch)
treec51fb3218ae0e673c707c3161f3d025780a91f62
parent41b191cb244b8eea17758fd535f1ad12d19a01ec (diff)
downloadioquake3-aero-648cb4e7cd39041aef8beb4ff1f8af5186332072.tar.gz
ioquake3-aero-648cb4e7cd39041aef8beb4ff1f8af5186332072.zip
Better stop than just pause.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1699 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r--code/client/snd_openal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c
index f7d9aef..7d9e66d 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;
}