aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index c49bb389..7d5d742b 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -1149,7 +1149,6 @@ another_source:
{
/* alSourceStop */
ALSource->state = AL_STOPPED;
- ALSource->inuse = AL_FALSE;
ALSource->BuffersPlayed = ALSource->BuffersInQueue;
BufferListItem = ALSource->queue;
while(BufferListItem != NULL)
@@ -1165,8 +1164,6 @@ another_source:
/* alSourceRewind */
/* alSourcePlay */
ALSource->state = AL_PLAYING;
- ALSource->inuse = AL_TRUE;
- ALSource->play = AL_TRUE;
ALSource->BuffersPlayed = 0;
BufferListItem = ALSource->queue;
while(BufferListItem != NULL)
@@ -1395,7 +1392,6 @@ ALvoid aluHandleDisconnect(ALCdevice *device)
ALbufferlistitem *BufferListItem;
source->state = AL_STOPPED;
- source->inuse = AL_FALSE;
source->BuffersPlayed = source->BuffersInQueue;
BufferListItem = source->queue;
while(BufferListItem != NULL)