[Scummvm-cvs-logs] scummvm master -> 03fbbbb3ae46b7004d62677ddba08ee80e247262

m-kiewitz m_kiewitz at users.sourceforge.net
Fri Jul 3 02:12:33 CEST 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
03fbbbb3ae AUDIO: Miles Audio MT32: remove updateScreen-call


Commit: 03fbbbb3ae46b7004d62677ddba08ee80e247262
    https://github.com/scummvm/scummvm/commit/03fbbbb3ae46b7004d62677ddba08ee80e247262
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2015-07-03T02:12:16+02:00

Commit Message:
AUDIO: Miles Audio MT32: remove updateScreen-call

was added for testing purposes and was commited by accident

Changed paths:
    audio/miles_mt32.cpp



diff --git a/audio/miles_mt32.cpp b/audio/miles_mt32.cpp
index fd01beb..e36ccf1 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;
 






More information about the Scummvm-git-logs mailing list