Added Audio::Mixer::setReady method to work around bug #1588848

svn-id: r24583
This commit is contained in:
Max Horn 2006-11-01 21:28:14 +00:00
parent e7dc2c0d0c
commit c718463a24
2 changed files with 4 additions and 1 deletions

View File

@ -190,7 +190,8 @@ void OSystem_SDL::initBackend() {
// allow subclasses to provide their own).
if (_mixer == 0) {
_mixer = new Audio::Mixer();
setSoundCallback(Audio::Mixer::mixCallback, _mixer);
bool result = setSoundCallback(Audio::Mixer::mixCallback, _mixer);
_mixer->setReady(result);
}
// Create and hook up the timer manager, if none exists yet (we check for

View File

@ -308,6 +308,8 @@ public:
* This simply calls the mix() method.
*/
static void mixCallback(void *s, byte *samples, int len);
void setReady(bool ready) { _mixerReady = ready; }
};