SDL quiescent audio level = 0x80, not 0x00

This commit is contained in:
Jorj Bauer 2018-02-07 14:19:53 -05:00
parent 0ed33f36d5
commit f790b3d5ab
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ static void audioCallback(void *unused, Uint8 *stream, int len)
if (g_biosInterrupt) {
// While the BIOS is running, we don't put samples in the audio
// queue.
memset(stream, 0, len);
memset(stream, 0x80, len);
pthread_mutex_unlock(&sndmutex);
return;
}