(svn r17140) -Change: allow higher sample rate and higher quality samples. Based on work by orudge.

This commit is contained in:
rubidium
2009-08-09 23:04:08 +00:00
parent 9ee2a66c86
commit 8e058c2d27
7 changed files with 80 additions and 21 deletions

View File

@@ -57,7 +57,7 @@ const char *SoundDriver_Allegro::Start(const char * const *parm)
return "No sound card found";
}
_stream = play_audio_stream(BUFFER_SIZE, 16, true, 11025, 255, 128);
_stream = play_audio_stream(BUFFER_SIZE, 16, true, 44100, 255, 128);
MxInitialize(11025);
return NULL;
}