From 745c0586397d0d6f852ee81946c8e8192fb272cd Mon Sep 17 00:00:00 2001 From: Rob Pearce Date: Wed, 31 Dec 2008 03:55:08 +0000 Subject: [PATCH] Another sound tweak - smaller buffer this time --- rc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.c b/rc.c index 7fe09c7..9413fd9 100644 --- a/rc.c +++ b/rc.c @@ -8860,7 +8860,7 @@ int initsound(void) { /* init */ //if (Mix_OpenAudio(44100, AUDIO_S16SYS, 2, 1024) < 0) { - if (Mix_OpenAudio(22050, MIX_DEFAULT_FORMAT, 2, 4096) < 0) { + if (Mix_OpenAudio(22050, MIX_DEFAULT_FORMAT, 2, 512) < 0) { printf("Error initialising sound: %s.\n",Mix_GetError()); return B_TRUE; }