diff options
author | Tim E. Real <termtech@rogers.com> | 2010-11-02 06:06:50 +0000 |
---|---|---|
committer | Tim E. Real <termtech@rogers.com> | 2010-11-02 06:06:50 +0000 |
commit | ba7a03030045602ce55c47a20a63fd72cfe10f47 (patch) | |
tree | 42d2ac0eca3787233289a5ccc7de3f7e856c2bd1 /muse2/synti/fluid | |
parent | bf32fe9882d7dd1dd6fbb88f39a42371063b6cd6 (diff) |
Testing: Disable some sendSysex calls crashing. Fluidsynth appears to work now.
Diffstat (limited to 'muse2/synti/fluid')
-rw-r--r-- | muse2/synti/fluid/fluidgui.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/muse2/synti/fluid/fluidgui.cpp b/muse2/synti/fluid/fluidgui.cpp index e5677bcb..a94ae9ea 100644 --- a/muse2/synti/fluid/fluidgui.cpp +++ b/muse2/synti/fluid/fluidgui.cpp @@ -65,7 +65,9 @@ void FLUIDGui::loadFont() buffer[k++] = 0x00; // fluid buffer[k++] = 0x01; // load sound font strcpy((char*)(&buffer[k]), path); - sendSysex(buffer, len); + // FIXME By Tim. This is crashing, after the conversion to QT4 and cmake. + printf("MusE FIXME: FLUIDGui::loadFont(): sendSysex disabled.\n"); +/// sendSysex(buffer, len); } //--------------------------------------------------------- |