aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-11-25 23:09:18 -0800
committerChris Robinson <[email protected]>2010-11-25 23:09:18 -0800
commite1c0b5ea24bbe2db24cf4f81a708d4d565d37f78 (patch)
tree1fb5cd209a2d57a07e6bdedaf392a8faf797edbe /Alc
parent30820c1bdeadb49b4eeb44d46e3b472460cdd53a (diff)
Call MixSource directly, instead of through a function pointer
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index f3482ade..78f18782 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -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++;
}