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/libsynti | |
parent | bf32fe9882d7dd1dd6fbb88f39a42371063b6cd6 (diff) |
Testing: Disable some sendSysex calls crashing. Fluidsynth appears to work now.
Diffstat (limited to 'muse2/synti/libsynti')
-rw-r--r-- | muse2/synti/libsynti/gui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/muse2/synti/libsynti/gui.cpp b/muse2/synti/libsynti/gui.cpp index cc737a9e..b5faf54a 100644 --- a/muse2/synti/libsynti/gui.cpp +++ b/muse2/synti/libsynti/gui.cpp @@ -95,7 +95,8 @@ void MessGui::sendSysex(unsigned char* p, int n) // MidiPlayEvent pe(0, 0, ME_SYSEX, p, n); // sendEvent(pe); - sendEvent(MidiPlayEvent(0, 0, ME_SYSEX, p, n)); + printf("MusE TESTING: MessGui::sendSysex(): sendEvent\n"); + sendEvent(MidiPlayEvent(0, 0, ME_SYSEX, p, n)); } //--------------------------------------------------------- |