mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-17 17:11:19 +00:00
- 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:
parent
8b4d85f0d7
commit
1aeef146e0
1 changed files with 2 additions and 4 deletions
|
@ -811,6 +811,8 @@ void FluidSynthMIDIDevice::UnloadFluidSynth()
|
||||||
FluidSynthModule.Unload();
|
FluidSynthModule.Unload();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
@ -821,7 +823,3 @@ MIDIDevice *CreateFluidSynthMIDIDevice(const char *args, int samplerate)
|
||||||
{
|
{
|
||||||
return new FluidSynthMIDIDevice(args, samplerate);
|
return new FluidSynthMIDIDevice(args, samplerate);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue