mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 20:59:00 +00:00
SCI: fixing last uninitialized variable issue in MidiParser_SCI (hopefully)
svn-id: r50063
This commit is contained in:
parent
f3b8a5927d
commit
ef67a37b54
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user