Made with_reverb and with_chorus of type int instead of char, so that atomic int ops will work right.

This commit is contained in:
Josh Green 2009-10-11 04:08:29 +00:00
parent 629fd249ff
commit 1b425d9e12

View file

@ -174,8 +174,8 @@ struct _fluid_synth_t
fluid_settings_t* settings; /**< the synthesizer settings */
int device_id; /**< Device ID used for SYSEX messages */
int polyphony; /**< maximum polyphony */
char with_reverb; /**< Should the synth use the built-in reverb unit? */
char with_chorus; /**< Should the synth use the built-in chorus unit? */
int with_reverb; /**< Should the synth use the built-in reverb unit? */
int with_chorus; /**< Should the synth use the built-in chorus unit? */
char verbose; /**< Turn verbose mode on? */
char dump; /**< Dump events to stdout to hook up a user interface? */
double sample_rate; /**< The sample rate */