Skip to content

Commit c6c4a4f

Browse files
committed
fix for #607 (and maybe other midi out issues)
1 parent 1ed792c commit c6c4a4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tulip/shared/modtulip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ STATIC mp_obj_t tulip_midi_out(size_t n_args, const mp_obj_t *args) {
248248
for(uint16_t i=0;i<(uint16_t)len;i++) {
249249
b[i] = mp_obj_get_int(items[i]);
250250
}
251-
midi_out(b, len);
251+
tulip_send_midi_out(b, len);
252252
free_caps(b);
253253
}
254254
return mp_const_none;

0 commit comments

Comments
 (0)