mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +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;
|
||||
|
||||
#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_synth_t *(STACK_ARGS *new_fluid_synth)(fluid_settings_t *);
|
||||
int (STACK_ARGS *delete_fluid_synth)(fluid_synth_t *);
|
||||
|
|
Loading…
Reference in a new issue