Small fix for PAL, Mono, 11025Hz.

This commit is contained in:
n-a-c-h
2006-03-20 14:09:02 +00:00
parent b1b87f94b7
commit 792eca1557

View File

@@ -2162,9 +2162,9 @@ static void raw_video_write_frame()
samples = RATE/50; samples = RATE/50;
if (freqtab[SoundQuality] & 1) if (freqtab[SoundQuality] & 1)
{ {
static signed char odd_carry = 0; static signed char half_carry = 0;
samples += odd_carry-1; samples += half_carry;
odd_carry ^= 2; half_carry ^= 1;
} }
} }
} }