mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 21:11:39 +00:00
- Fixed incorrect definition of FLUID_FAILED when building with DYN_FLUIDSYNTH enabled.
SVN r2818 (trunk)
This commit is contained in:
parent
3090ad7be6
commit
5871712fd4
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ protected:
|
||||||
fluid_synth_t *FluidSynth;
|
fluid_synth_t *FluidSynth;
|
||||||
|
|
||||||
#ifdef DYN_FLUIDSYNTH
|
#ifdef DYN_FLUIDSYNTH
|
||||||
enum { FLUID_FAILED = 1, FLUID_OK = 0 };
|
enum { FLUID_FAILED = -1, FLUID_OK = 0 };
|
||||||
fluid_settings_t *(STACK_ARGS *new_fluid_settings)();
|
fluid_settings_t *(STACK_ARGS *new_fluid_settings)();
|
||||||
fluid_synth_t *(STACK_ARGS *new_fluid_synth)(fluid_settings_t *);
|
fluid_synth_t *(STACK_ARGS *new_fluid_synth)(fluid_settings_t *);
|
||||||
int (STACK_ARGS *delete_fluid_synth)(fluid_synth_t *);
|
int (STACK_ARGS *delete_fluid_synth)(fluid_synth_t *);
|
||||||
|
|
Loading…
Reference in a new issue