Skip to content

Commit

Permalink
AUDIO: Miles Audio MT32: remove updateScreen-call
Browse files Browse the repository at this point in the history
was added for testing purposes and was commited by accident
  • Loading branch information
Martin Kiewitz committed Jul 3, 2015
1 parent 32b44b7 commit 03fbbbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion audio/miles_mt32.cpp
Expand Up @@ -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
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 03fbbbb

Please sign in to comment.