- fixed linking without DYN_FLUIDSYNTH defined

Undefined symbols for architecture x86_64:
  "CreateFluidSynthMIDIDevice(char const*, int)", referenced from:
      MIDIStreamer::CreateMIDIDevice(EMidiDevice, int) in music_midistream.o
This commit is contained in:
alexey.lysiuk 2019-07-07 11:39:57 +03:00
parent 8b4d85f0d7
commit 1aeef146e0

View file

@ -811,6 +811,8 @@ void FluidSynthMIDIDevice::UnloadFluidSynth()
FluidSynthModule.Unload();
}
#endif
//==========================================================================
//
//
@ -821,7 +823,3 @@ MIDIDevice *CreateFluidSynthMIDIDevice(const char *args, int samplerate)
{
return new FluidSynthMIDIDevice(args, samplerate);
}
#endif