From fde82ec3ac8e6b93c7686d70d2d3bf68541e8a1d Mon Sep 17 00:00:00 2001 From: sezero Date: Sat, 22 Jan 2011 20:11:46 +0000 Subject: [PATCH] fixed a typo in a comment, noticed by Sander van Dijk. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@402 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/snd_mix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/snd_mix.c b/Quake/snd_mix.c index 598a55e8..dc2e8dfe 100644 --- a/Quake/snd_mix.c +++ b/Quake/snd_mix.c @@ -310,7 +310,7 @@ static void SND_PaintChannelFrom16 (channel_t *ch, sfxcache_t *sc, int count) { data = sfx[i]; // this was causing integer overflow as observed in quakespasm - // with the warpspasm mod moved <<8 to left/right volume above. + // with the warpspasm mod moved >>8 to left/right volume above. // left = (data * leftvol) >> 8; // right = (data * rightvol) >> 8; left = data * leftvol;