From 43c0cd3dd6d0efba8d14d690e7cbb96455f69e14 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 26 Mar 2023 18:33:54 +0200 Subject: [PATCH] Comment out "MIDI message is shorter than 2 bytes!" Closes https://github.com/probonopd/MiniDexed/issues/437 --- src/mididevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mididevice.cpp b/src/mididevice.cpp index 9b3deac..4e51056 100644 --- a/src/mididevice.cpp +++ b/src/mididevice.cpp @@ -164,7 +164,7 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign if (nLength < 2) { - LOGERR("MIDI message is shorter than 2 bytes!"); + // LOGERR("MIDI message is shorter than 2 bytes!"); return; }