From 92d5f4c4b634802dde236cc9f4bb92fa53a421af Mon Sep 17 00:00:00 2001 From: BeZo Date: Tue, 5 Jul 2022 21:58:14 +0200 Subject: [PATCH] This should fix the build issues --- src/mididevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mididevice.cpp b/src/mididevice.cpp index ac5cf5a..d137a06 100644 --- a/src/mididevice.cpp +++ b/src/mididevice.cpp @@ -324,7 +324,7 @@ void CMIDIDevice::HandleSystemExclusive(const uint8_t* pMessage, const size_t nL if ( nTG >= CConfig::ToneGenerators ) return; - sysex_return = m_pSynthesizer->checkSystemExclusive(pMessage, nLength, nTG); + sysex_return = checkSystemExclusive(pMessage, nLength, nTG); uint8_t instanceID = pMessage[2]&0xF; if ( instanceID != nTG ) { printf("WARNING instanceID and nTG do not match!!!!!\n"); }