diff options
author | Chris Robinson <[email protected]> | 2010-05-24 01:07:13 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-05-24 01:07:13 -0700 |
commit | 8cfac7c6b8b1243e5e77bf2946820c79d18d8997 (patch) | |
tree | b8245be58e31b623ee2405cceb9eb7d4da7c9440 /OpenAL32/alSource.c | |
parent | 9ac6b4c2c84ddbe89ec1db42f92c6e13dadfcc6e (diff) |
Don't bother storing the loop points in the source
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 139eb75b..066e7f72 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -564,9 +564,6 @@ AL_API ALvoid AL_APIENTRY alSourcei(ALuint source,ALenum eParam,ALint lValue) Source->queue = BufferListItem; Source->BuffersInQueue = 1; - Source->LoopStart = buffer->LoopStart; - Source->LoopEnd = buffer->LoopEnd; - // Increment reference counter for buffer buffer->refcount++; } |