aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse_digi.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/imuse_digi.h')
-rw-r--r--scumm/imuse_digi.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/imuse_digi.h b/scumm/imuse_digi.h
index eb7ade49d2..9bd7b379e9 100644
--- a/scumm/imuse_digi.h
+++ b/scumm/imuse_digi.h
@@ -25,6 +25,7 @@
#include "common/scummsys.h"
#include "scumm/music.h"
+#include "sound/audiostream.h"
#include "sound/mixer.h"
namespace Scumm {
@@ -84,11 +85,12 @@ private:
int idSound;
int32 mixerSize;
int mixerFlags;
- PlayingSoundHandle handle;
bool used;
bool toBeRemoved;
+ PlayingSoundHandle handle;
+ WrappedAudioInputStream *stream;
- Channel() : idSound(-1), used(false) {}
+ Channel();
};
Channel _channel[MAX_DIGITAL_CHANNELS];