diff options
author | Martin Kiewitz | 2015-07-03 02:12:16 +0200 |
---|---|---|
committer | Martin Kiewitz | 2015-07-03 02:12:16 +0200 |
commit | 03fbbbb3ae46b7004d62677ddba08ee80e247262 (patch) | |
tree | 7f462db9f7a0190ec1ab52504c9a397873533b85 | |
parent | 32b44b7c18531eb743b88e5d42aac5e24d22f72e (diff) | |
download | scummvm-rg350-03fbbbb3ae46b7004d62677ddba08ee80e247262.tar.gz scummvm-rg350-03fbbbb3ae46b7004d62677ddba08ee80e247262.tar.bz2 scummvm-rg350-03fbbbb3ae46b7004d62677ddba08ee80e247262.zip |
AUDIO: Miles Audio MT32: remove updateScreen-call
was added for testing purposes and was commited by accident
-rw-r--r-- | audio/miles_mt32.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/miles_mt32.cpp b/audio/miles_mt32.cpp index fd01bebb07..e36ccf1c5d 100644 --- a/audio/miles_mt32.cpp +++ b/audio/miles_mt32.cpp @@ -335,7 +335,6 @@ void MidiDriver_Miles_MT32::MT32SysEx(const uint32 targetAddress, const byte *da delay += 40; g_system->delayMillis(delay); - g_system->updateScreen(); } // MIDI messages can be found at http://www.midi.org/techspecs/midimessages.php @@ -508,6 +507,8 @@ void MidiDriver_Miles_MT32::programChange(byte midiChannel, byte patchId) { byte channelPatchBank = _midiChannels[midiChannel].currentPatchBank; byte activePatchBank = _patchesBank[patchId]; + //warning("patch channel %d, patch %x, bank %x", midiChannel, patchId, channelPatchBank); + // remember patch id for the current MIDI-channel _midiChannels[midiChannel].currentPatchId = patchId; |