Revert "[PATCH] Fixed signedness warning in snd_mix.c"

Tracked this back to some sound corruption happening during testing. The
compiler warning is back after reverting, but the sound is fixed. Will
need to audit the code and get the signedness handling correct.

This reverts commit 924c3deb23.
This commit is contained in:
Kevin Shanahan 2012-10-29 20:54:20 +10:30
parent 16696c266a
commit f045210581

View File

@ -248,7 +248,7 @@ SND_PaintChannelFrom8(channel_t *ch, sfxcache_t *sc, int count)
{
int data;
int *lscale, *rscale;
signed char *sfx;
unsigned char *sfx;
int i;
if (ch->leftvol > 255)