diff options
author | Chris Robinson <[email protected]> | 2012-04-26 06:44:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-26 06:44:37 -0700 |
commit | 68ab23236417ff54057380c1a3c08ec8f4c98838 (patch) | |
tree | b6217284644d2a9f6bab7d34121eb90f94a011de /OpenAL32 | |
parent | 871d61f3f925680c7e80225dd972236cbca1318d (diff) |
Use a separate loop to actually update DataPosFrac and DataPosInt
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index fa71480a..637a668d 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -121,8 +121,7 @@ struct ALsource; struct ALbuffer; typedef ALvoid (*MixerFunc)(struct ALsource *self, ALCdevice *Device, - const ALvoid *RESTRICT data, - ALuint *DataPosInt, ALuint *DataPosFrac, + const ALvoid *RESTRICT srcdata, ALuint srcfrac, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize); |