From 975f92fc8447dc23c5baea0c1809358bddabd9c0 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 16 Mar 2010 21:29:55 -0700 Subject: Remove unnecessary stop call --- OpenAL32/alSource.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'OpenAL32') diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index de1bd469..a2c24a12 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -139,8 +139,6 @@ ALAPI ALvoid ALAPIENTRY alDeleteSources(ALsizei n, const ALuint *sources) // Recheck that the Source is valid, because there could be duplicated Source names if((ALSource=VerifySource(Context->SourceList, sources[i])) != NULL) { - alSourceStop((ALuint)ALSource->source); - // For each buffer in the source's queue, decrement its reference counter and remove it while (ALSource->queue != NULL) { -- cgit v1.2.3