diff options
author | Chris Robinson <[email protected]> | 2010-03-16 21:29:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-16 21:29:55 -0700 |
commit | 975f92fc8447dc23c5baea0c1809358bddabd9c0 (patch) | |
tree | 9bde85edad4af830138f3fab7d3c8a09bd2570b7 /OpenAL32 | |
parent | 0097beb84cf8543485746f5796505a9148ba7fbb (diff) |
Remove unnecessary stop call
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alSource.c | 2 |
1 files changed, 0 insertions, 2 deletions
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) { |