From e8919433b24f00fb4006ea13fd903e93da9d5fd4 Mon Sep 17 00:00:00 2001 From: SarahW Date: Sat, 11 Nov 2017 20:20:35 +0000 Subject: [PATCH] Fix OpenAL include path on Mac OS X. --- src/soundopenal.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/soundopenal.c b/src/soundopenal.c index 5dd088f..d24334c 100644 --- a/src/soundopenal.c +++ b/src/soundopenal.c @@ -3,9 +3,14 @@ #include #include #ifdef USE_OPENAL +#ifdef __APPLE__ +#include +#include +#else #include #include #endif +#endif #include "ibm.h" #include "sound.h"