- Fixed incorrect definition of FLUID_FAILED when building with DYN_FLUIDSYNTH enabled.

SVN r2818 (trunk)
This commit is contained in:
Randy Heit 2010-09-18 02:12:49 +00:00
parent 3090ad7be6
commit 5871712fd4
1 changed files with 1 additions and 1 deletions

View File

@ -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 *);