aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2006-11-01 21:28:14 +0000
committerMax Horn2006-11-01 21:28:14 +0000
commitc718463a24b1f49745b3f4201f11bb7dc5697b87 (patch)
treeb57ca335b0c6920a40d817b5f16f761190ea11ce /sound
parente7dc2c0d0cabd2e9890903800aab7559115a0d9f (diff)
downloadscummvm-rg350-c718463a24b1f49745b3f4201f11bb7dc5697b87.tar.gz
scummvm-rg350-c718463a24b1f49745b3f4201f11bb7dc5697b87.tar.bz2
scummvm-rg350-c718463a24b1f49745b3f4201f11bb7dc5697b87.zip
Added Audio::Mixer::setReady method to work around bug #1588848
svn-id: r24583
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/mixer.h b/sound/mixer.h
index b799345558..bb3e3a711f 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -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; }
};