summaryrefslogtreecommitdiffstats
path: root/src/midi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/midi.c')
-rw-r--r--src/midi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/midi.c b/src/midi.c
index 11029b0..389a670 100644
--- a/src/midi.c
+++ b/src/midi.c
@@ -123,12 +123,13 @@ void midi_decode(uint32_t msg, synth_t * synth) {
}
}
-
+int enable = 0;
void
midiCallback(PtTimestamp timestamp, void *userData) {
midi_t * m = (midi_t *)userData;
if (!m->stream) return;
+ if (!enable) return;
// if (!Pm_Poll(m->stream)) return;
@@ -174,6 +175,7 @@ init_midi(midi_t *m, synth_t *synth)
128,
NULL,
NULL);
+ enable = 1;
}
void