diff options
author | Chris Robinson <[email protected]> | 2017-02-21 16:31:59 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-02-21 16:31:59 -0800 |
commit | 864d5387dda119d9faecfd62226b62f1a8af8532 (patch) | |
tree | 482a95640ede134a44f669965eec28ea18e41de3 /Alc/mixer.c | |
parent | 29994aa2de828ce96950451219186b44bac54a75 (diff) |
Dynamically allocate the ALsource Send[] array
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index a48b0e29..46ca0892 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -381,7 +381,7 @@ void MixSource(ALvoice *voice, ALsource *Source, ALCdevice *Device, ALsizei Samp ALsizei Counter; ALsizei IrSize; ALsizei chan, j; - ALuint send; + ALsizei send; /* Get source info */ State = AL_PLAYING; /* Only called while playing. */ |