mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-01 00:21:14 +00:00
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:
parent
629fd249ff
commit
1b425d9e12
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue