From ba7a03030045602ce55c47a20a63fd72cfe10f47 Mon Sep 17 00:00:00 2001 From: "Tim E. Real" Date: Tue, 2 Nov 2010 06:06:50 +0000 Subject: Testing: Disable some sendSysex calls crashing. Fluidsynth appears to work now. --- muse2/synti/fluidsynth/fluidsynti.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'muse2/synti/fluidsynth/fluidsynti.cpp') diff --git a/muse2/synti/fluidsynth/fluidsynti.cpp b/muse2/synti/fluidsynth/fluidsynti.cpp index bf12b7f8..f14fc90b 100644 --- a/muse2/synti/fluidsynth/fluidsynti.cpp +++ b/muse2/synti/fluidsynth/fluidsynti.cpp @@ -684,7 +684,9 @@ void FluidSynth::sendChannelData() *(chdptr+1) = i; //Channel nr chdptr += chunk_size; } - sendSysex(chdata_length, chdata); + // FIXME By Tim. This is crashing, after the conversion to QT4 and cmake. + printf("MusE FIXME: FluidSynth::sendChannelData() sendSysex disabled.\n"); +/// sendSysex(chdata_length, chdata); // Send drum channel info afterwards (later addition, not very neat, but works...) int drumchdata_length = FS_MAX_NR_OF_CHANNELS + 1; //1 byte for the command, one byte for each channel @@ -696,7 +698,8 @@ void FluidSynth::sendChannelData() drumchdataptr++; *drumchdataptr = channels[i].drumchannel; } - sendSysex(drumchdata_length, drumchdata); + // FIXME By Tim. This is crashing, after the conversion to QT4 and cmake. +/// sendSysex(drumchdata_length, drumchdata); } //--------------------------------------------------------- -- cgit v1.2.3