diff options
author | Chris Robinson <[email protected]> | 2012-04-26 07:50:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-26 07:50:17 -0700 |
commit | 2cdb58fb850f085b801c3d33b82512efd083020c (patch) | |
tree | 6a66e6012fcdbb430a2e7511d2f44e9c5e9c72d2 /OpenAL32 | |
parent | 68ab23236417ff54057380c1a3c08ec8f4c98838 (diff) |
The mixer always uses floats
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 637a668d..68353a00 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -121,7 +121,7 @@ struct ALsource; struct ALbuffer; typedef ALvoid (*MixerFunc)(struct ALsource *self, ALCdevice *Device, - const ALvoid *RESTRICT srcdata, ALuint srcfrac, + const ALfloat *RESTRICT data, ALuint srcfrac, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize); |