aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorD G Turner2019-12-15 22:22:20 +0000
committerD G Turner2019-12-15 22:22:20 +0000
commit8593a9e1e4e8dd1f5dfac9b1304a417df9a742e6 (patch)
treeeb4b339299cfaba9b38c7bf318c3cd788ee7bfea /audio
parentaf8056e822a1356dde1f25a180e831207044c2c2 (diff)
downloadscummvm-rg350-8593a9e1e4e8dd1f5dfac9b1304a417df9a742e6.tar.gz
scummvm-rg350-8593a9e1e4e8dd1f5dfac9b1304a417df9a742e6.tar.bz2
scummvm-rg350-8593a9e1e4e8dd1f5dfac9b1304a417df9a742e6.zip
AUDIO: Fix Compilation Against Fluidsynth v2.1+
This is as reported by eriktorbjorn.
Diffstat (limited to 'audio')
-rw-r--r--audio/softsynth/fluidsynth.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/audio/softsynth/fluidsynth.cpp b/audio/softsynth/fluidsynth.cpp
index 4034b2ffc3..33a74a1524 100644
--- a/audio/softsynth/fluidsynth.cpp
+++ b/audio/softsynth/fluidsynth.cpp
@@ -35,7 +35,12 @@
#include "backends/platform/ios7/ios7_common.h"
#endif
+// Fluidsynth v2.1+ uses printf in one of it's headers, so this is
+// needed to allow compilation, as reported by eriktorbjorn on 20191215
+// This is in include/fluidsynth/log.h around line 82
+#define FORBIDDEN_SYMBOL_EXCEPTION_printf
#include <fluidsynth.h>
+#undef FORBIDDEN_SYMBOL_EXCEPTION_printf
class MidiDriver_FluidSynth : public MidiDriver_Emulated {
private: