Skip to content

Commit bf1a502

Browse files
wpwrakSebastien Bourdeauducq
authored and
Sebastien Bourdeauducq
committedNov 7, 2011
input.c: an OSC-MIDI message contains a complete command - process accordingly
Test with something like oscsend m1 4444 /midi m 00b01223
1 parent d753464 commit bf1a502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/input.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ void input_eventloop()
430430
} else if(m.fd == btn_fd) {
431431
n = handle_btn_event(&e[total], m.data);
432432
} else if(m.fd == -1) {
433-
n = handle_midi_event(&e[total], m.data);
433+
n = handle_midi_msg(&e[total], m.data);
434434
} else if(m.fd == -2) {
435435
/* injected OSC */
436436
e[total].type = EVENT_TYPE_OSC;

0 commit comments

Comments
 (0)
Please sign in to comment.