Small fix for PAL, Mono, 11025Hz.
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user