mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
Added Audio::Mixer::setReady method to work around bug #1588848
svn-id: r24583
This commit is contained in:
parent
e7dc2c0d0c
commit
c718463a24
@ -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
|
||||
|
@ -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; }
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user