aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-10-26 08:49:37 -0700
committerChris Robinson <[email protected]>2013-10-26 08:49:37 -0700
commit54b8690781a1dd1512fda92f1ed400005b43f9b4 (patch)
tree0b9d6292b91905203be42fcf8179e293bda29dca
parent959b76891106eb5fd4d8788090be61a060410b4d (diff)
Fix a comment
-rw-r--r--Alc/mixer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c
index 5f76feaa..acd6c610 100644
--- a/Alc/mixer.c
+++ b/Alc/mixer.c
@@ -131,7 +131,7 @@ ALvoid MixSource(ALsource *Source, ALCdevice *Device, ALuint SamplesToDo)
const ALuint BufferPadding = ResamplerPadding[Resampler];
ALuint SrcBufferSize, DstBufferSize;
- /* Figure out how many buffer bytes will be needed */
+ /* Figure out how many buffer samples will be needed */
DataSize64 = SamplesToDo-OutPos+1;
DataSize64 *= increment;
DataSize64 += DataPosFrac+FRACTIONMASK;