summaryrefslogtreecommitdiff
path: root/muse2/synti/simpledrums2
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2010-11-02 06:06:50 +0000
committerTim E. Real <termtech@rogers.com>2010-11-02 06:06:50 +0000
commitba7a03030045602ce55c47a20a63fd72cfe10f47 (patch)
tree42d2ac0eca3787233289a5ccc7de3f7e856c2bd1 /muse2/synti/simpledrums2
parentbf32fe9882d7dd1dd6fbb88f39a42371063b6cd6 (diff)
Testing: Disable some sendSysex calls crashing. Fluidsynth appears to work now.
Diffstat (limited to 'muse2/synti/simpledrums2')
-rw-r--r--muse2/synti/simpledrums2/simpledrumsgui.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/muse2/synti/simpledrums2/simpledrumsgui.cpp b/muse2/synti/simpledrums2/simpledrumsgui.cpp
index ab511cec..4b0b1874 100644
--- a/muse2/synti/simpledrums2/simpledrumsgui.cpp
+++ b/muse2/synti/simpledrums2/simpledrumsgui.cpp
@@ -717,7 +717,9 @@ void SimpleSynthGui::loadSampleDialogue(int channel)
d[1] = (byte) channel;
d[2] = (byte) filename.length();
memcpy(d+3, filename.toLatin1().data(), filename.length()+1);
- sendSysex(d, l);
+ // FIXME By Tim. This is crashing, after the conversion to QT4 and cmake.
+ printf("MusE FIXME: SimpleSynthGui::loadSampleDialogue() sendSysex disabled.\n");
+/// sendSysex(d, l);
}
}