Another sound tweak

This commit is contained in:
Rob Pearce 2008-12-31 03:53:47 +00:00
parent af5fcbe11f
commit ba962618e3
1 changed files with 1 additions and 1 deletions

2
rc.c
View File

@ -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, 2048) < 0) {
if (Mix_OpenAudio(22050, MIX_DEFAULT_FORMAT, 2, 4096) < 0) {
printf("Error initialising sound: %s.\n",Mix_GetError());
return B_TRUE;
}