aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-10-21 15:40:09 -0700
committerChris Robinson <[email protected]>2009-10-21 15:40:09 -0700
commit8501fce38b2e8b9f4b3d4c9381ed48be6bef1524 (patch)
tree56099114f749f87e3c97f7bdb12261e2eddcba65 /Alc
parent55d7984582ff1f2be7c963b0cac44fac0fe0f2b9 (diff)
Remove unused source fields
Diffstat (limited to 'Alc')
-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)