From d9c652dcdd268b9ef17e25a5427fc384eb49184f Mon Sep 17 00:00:00 2001 From: pd3v Date: Thu, 11 Jul 2024 15:39:25 +0100 Subject: [PATCH] set OS preprocessor for right MIDI API --- line.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/line.cpp b/line.cpp index 6860768..05f7140 100755 --- a/line.cpp +++ b/line.cpp @@ -26,10 +26,10 @@ #include "RtMidi.h" #if (__APPLE__) -#define MACOSX_CORE 1 + #define __MACOSX_CORE__ #endif #if (__linux__) -#define LINUX_ALSA 1 + #define __LINUX_ALSA__ #endif #if defined(LINK_PLATFORM_UNIX)