Re: [fluid-dev] Fluidsynth reverb settings

2011-03-20 Thread S. Christian Collins
On 03/20/2011 03:32 PM, Pedro Lopez-Cabanillas wrote: * @param roomsize Reverb room size value (0.0-1.2) Is this a typo? Shouldn't it be "0.0-1.0" instead? -~Chris ___ fluid-dev mailing list fluid-dev@nongnu.org http://lists.nongnu.org/mailman/listi

Re: [fluid-dev] Building with -ansi

2011-03-20 Thread Pedro Lopez-Cabanillas
On Sunday 20 March 2011, Matt Giuca wrote: > The other bug was an implicit void* to char* cast. I searched the GCC man > page for any flag that would warn about that but I can't find any specific > one. I did find -Wc++-compat, which is documented as: "Warn about ISO C > constructs that are outside

Re: [fluid-dev] Building with -ansi

2011-03-20 Thread Matt Giuca
> It doesn't build, though. FluidSynth source code is not ANSI C compliant. > MSVC is C90 with a few additional features of C99, but not including the > "intermingled declarations and code" syntax. See: > http://en.wikipedia.org/wiki/C99 > OK, that makes sense. Instead of the "-ansi" flag, you ma

Re: [fluid-dev] Fluidsynth reverb settings

2011-03-20 Thread Pedro Lopez-Cabanillas
On Thursday 17 March 2011, S. Christian Collins wrote: > I don't know if this helps, but these are the reverb values I use for > Fluidsynth and I am quite happy with the sound. Now, I have set these > values in Qsynth, so I am not sure if the numbers are different in > Fluidsynth: The correspo

Re: [fluid-dev] Building with -ansi

2011-03-20 Thread Pedro Lopez-Cabanillas
On Sunday 20 March 2011, Matt Giuca wrote: > Hi, > > My apologies for causing bug > #97. > Judging by plcl's fix: > http://fluidsynth.svn.sourceforge.net/viewvc/fluidsynth/trunk/fluidsynth/src/midi/fluid_midi.c?r1=408&r2=411 > > I declared a

Re: [fluid-dev] Building with -ansi

2011-03-20 Thread James Le Cuirot
On Sun, 20 Mar 2011 21:54:04 +1100 Matt Giuca wrote: > I declared a variable not at the top of a function and didn't cast a > void* to a char*, which apparently MSVC doesn't like. I (like I > assume many developers) don't have MSVC to test on. Visual C++ Express is free to download so as much as

[fluid-dev] Building with -ansi

2011-03-20 Thread Matt Giuca
Hi, My apologies for causing bug #97. Judging by plcl's fix: http://fluidsynth.svn.sourceforge.net/viewvc/fluidsynth/trunk/fluidsynth/src/midi/fluid_midi.c?r1=408&r2=411 I declared a variable not at the top of a function and didn't cast a vo