From 724091eb15ddbd0d4a8f8d22df5d3ee949a103f9 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 3 Jul 2017 13:18:43 -0700 Subject: [PATCH] Fix missing include for allegro Allegro, for some reason, does not include , which causes compile errors when including the header. --- src/AudioIO.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AudioIO.h b/src/AudioIO.h index aab33bce6..8119de58b 100644 --- a/src/AudioIO.h +++ b/src/AudioIO.h @@ -28,6 +28,7 @@ #ifdef EXPERIMENTAL_MIDI_OUT #include "../lib-src/portmidi/pm_common/portmidi.h" #include "../lib-src/portmidi/porttime/porttime.h" +#include // Allegro include fails if this header isn't included do to no memcpy #include "../lib-src/portsmf/allegro.h" class NoteTrack;