diff options
-rw-r--r-- | scumm/imuse.cpp | 4 | ||||
-rw-r--r-- | scumm/imuse.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index cae65cdfaf..68df773f11 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -4855,7 +4855,7 @@ IMuseDigital::~IMuseDigital() { void IMuseDigital::handler() { bool new_mixer; - int32 l, idx; + int32 l, idx = 0; for (l = 0; l < MAX_DIGITAL_CHANNELS;l ++) { if (_channel[l]._used) { @@ -4939,7 +4939,7 @@ void IMuseDigital::startSound(int sound) { _channel[l]._numJumps = 0; ptr += 16; - uint32 tag, size; + uint32 tag, size = 0; for (;;) { tag = READ_BE_UINT32(ptr); ptr += 4; diff --git a/scumm/imuse.h b/scumm/imuse.h index 7aa61ed190..c731913192 100644 --- a/scumm/imuse.h +++ b/scumm/imuse.h @@ -99,7 +99,7 @@ private: uint8 _mixerFlags; bool _used; bool _toBeRemoved; - uint32 _mixerTrack; + int32 _mixerTrack; } _channel[MAX_DIGITAL_CHANNELS]; Scumm * _scumm; |