SCI: fixing last uninitialized variable issue in MidiParser_SCI (hopefully)

svn-id: r50063
This commit is contained in:
Martin Kiewitz 2010-06-19 20:37:53 +00:00
parent f3b8a5927d
commit ef67a37b54

View File

@ -73,7 +73,7 @@ bool MidiParser_SCI::loadMusic(SoundResource::Track *track, MusicEntry *psnd, in
_pSnd = psnd;
_soundVersion = soundVersion;
for (int i = 0; i < 15; i++) {
for (int i = 0; i < 16; i++) {
_channelUsed[i] = false;
_channelRemap[i] = -1;
_channelMuted[i] = false;