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, 2 insertions, 2 deletions
diff --git a/src/midi.c b/src/midi.c
index 5513123..7ae8df4 100644
--- a/src/midi.c
+++ b/src/midi.c
@@ -59,7 +59,7 @@ int midi_set_channel(midi_message_t *pkt, unsigned channel)
return 0;
}
-int midi_note_on(midi_message_t *pkt, unsigned channel, midi_note_t note, uint8_t velocity)
+int midi_note_on(midi_message_t *pkt, unsigned channel, unsigned note, uint8_t velocity)
{
if (pkt == NULL) {
return -1;
@@ -84,7 +84,7 @@ int midi_note_on(midi_message_t *pkt, unsigned channel, midi_note_t note, uint8_
return 0;
}
-int midi_note_off(midi_message_t *pkt, unsigned channel, midi_note_t note, uint8_t velocity)
+int midi_note_off(midi_message_t *pkt, unsigned channel, unsigned note, uint8_t velocity)
{
if (pkt == NULL) {
return -1;