aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorMartin Kiewitz2015-07-03 02:12:16 +0200
committerMartin Kiewitz2015-07-03 02:12:16 +0200
commit03fbbbb3ae46b7004d62677ddba08ee80e247262 (patch)
tree7f462db9f7a0190ec1ab52504c9a397873533b85 /audio
parent32b44b7c18531eb743b88e5d42aac5e24d22f72e (diff)
downloadscummvm-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
Diffstat (limited to 'audio')
-rw-r--r--audio/miles_mt32.cpp3
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;