diff options
author | Chris Robinson <[email protected]> | 2013-12-17 23:03:34 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-12-17 23:03:34 -0800 |
commit | 0653680690688fd0c9e4331bf1c5a5cd6490e270 (patch) | |
tree | c91a02b8e72de51d92ced184efb1b04b50f27915 /Alc/midi/fluidsynth.c | |
parent | 0095a59fc96faa1d1cf0c8ede9105b4770b240bc (diff) |
Move the base MidiSynth to a separate file
Diffstat (limited to 'Alc/midi/fluidsynth.c')
-rw-r--r-- | Alc/midi/fluidsynth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/midi/fluidsynth.c b/Alc/midi/fluidsynth.c index c2cde00c..91c7229d 100644 --- a/Alc/midi/fluidsynth.c +++ b/Alc/midi/fluidsynth.c @@ -10,13 +10,14 @@ #include <fluidsynth.h> -#include "alMidi.h" #include "alMain.h" #include "alError.h" #include "evtqueue.h" #include "rwlock.h" #include "alu.h" +#include "midi/base.h" + /* MIDI events */ #define SYSEX_EVENT (0xF0) |