From 1b425d9e123dcbe271695b2e09ab630905d10ff8 Mon Sep 17 00:00:00 2001 From: Josh Green Date: Sun, 11 Oct 2009 04:08:29 +0000 Subject: [PATCH] Made with_reverb and with_chorus of type int instead of char, so that atomic int ops will work right. --- fluidsynth/src/fluid_synth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fluidsynth/src/fluid_synth.h b/fluidsynth/src/fluid_synth.h index ae2850a5..27873c4f 100644 --- a/fluidsynth/src/fluid_synth.h +++ b/fluidsynth/src/fluid_synth.h @@ -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 */