aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.c
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r--OpenAL32/alSource.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c
index ba79f03f..df7abbcc 100644
--- a/OpenAL32/alSource.c
+++ b/OpenAL32/alSource.c
@@ -554,6 +554,8 @@ AL_API ALvoid AL_APIENTRY alSourcei(ALuint source,ALenum eParam,ALint lValue)
// Add the buffer to the queue (as long as it is NOT the NULL buffer)
if(lValue != 0)
{
+ ALuint channels;
+
// Source is now in STATIC mode
Source->lSourceType = AL_STATIC;
@@ -565,6 +567,14 @@ AL_API ALvoid AL_APIENTRY alSourcei(ALuint source,ALenum eParam,ALint lValue)
Source->queue = BufferListItem;
Source->BuffersInQueue = 1;
+ channels = aluChannelsFromFormat(buffer->format);
+ Source->LoopStart = FramesFromBytes(buffer->LoopStart,
+ buffer->eOriginalFormat,
+ channels);
+ Source->LoopEnd = FramesFromBytes(buffer->LoopEnd,
+ buffer->eOriginalFormat,
+ channels);
+
// Increment reference counter for buffer
buffer->refcount++;
}