diff options
author | Chris Robinson <[email protected]> | 2010-11-25 23:09:18 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-25 23:09:18 -0800 |
commit | e1c0b5ea24bbe2db24cf4f81a708d4d565d37f78 (patch) | |
tree | 1fb5cd209a2d57a07e6bdedaf392a8faf797edbe /Alc | |
parent | 30820c1bdeadb49b4eeb44d46e3b472460cdd53a (diff) |
Call MixSource directly, instead of through a function pointer
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -718,7 +718,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) (*src)->NeedsUpdate = AL_FALSE; } - ALsource_Mix(*src, device, SamplesToDo); + MixSource(*src, device, SamplesToDo); src++; } |