[Scummvm-git-logs] scummvm master -> b2f98611e7a4cc64188c3e0058838c11c48b3a5e

mikrosk noreply at scummvm.org
Mon Jan 6 13:09:05 UTC 2025


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:
b2f98611e7 BACKENDS: STMIDI: Fix a typo


Commit: b2f98611e7a4cc64188c3e0058838c11c48b3a5e
    https://github.com/scummvm/scummvm/commit/b2f98611e7a4cc64188c3e0058838c11c48b3a5e
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2025-01-06T14:08:59+01:00

Commit Message:
BACKENDS: STMIDI: Fix a typo

Changed paths:
    backends/midi/stmidi.cpp


diff --git a/backends/midi/stmidi.cpp b/backends/midi/stmidi.cpp
index 2e084abcfa7..c0ab221699b 100644
--- a/backends/midi/stmidi.cpp
+++ b/backends/midi/stmidi.cpp
@@ -114,11 +114,11 @@ void MidiDriver_STMIDI::sysEx (const byte *msg, uint16 length) {
 	const byte *chr = msg;
 	warning("Sending SysEx Message");
 
-	Bconout(3, '0xF0');
+	Bconout(3, 0xF0);
 	for (; length; --length, ++chr) {
 		Bconout(3,((unsigned char) *chr & 0x7F));
 	}
-	Bconout(3, '0xF7');
+	Bconout(3, 0xF7);
 }
 
 // Plugin interface




More information about the Scummvm-git-logs mailing list