From a7febfbb62182e72ecc39c5fa9e8bd9ac923f47e Mon Sep 17 00:00:00 2001 From: soggywhale <112708531+soggywhale@users.noreply.github.com> Date: Wed, 8 Feb 2023 03:20:42 +0100 Subject: [PATCH] changed the undefined ON and OFF parameters to thedefined constant (#19772) --- docs/feature_midi.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/feature_midi.md b/docs/feature_midi.md index 1f0809ef144..5df11c4b586 100644 --- a/docs/feature_midi.md +++ b/docs/feature_midi.md @@ -60,9 +60,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case MIDI_CC80: if (record->event.pressed) { - midi_send_cc(&midi_device, midi_config.channel, 80, ON); + midi_send_cc(&midi_device, midi_config.channel, 80, MIDI_CC_ON); } else { - midi_send_cc(&midi_device, midi_config.channel, 80, OFF); + midi_send_cc(&midi_device, midi_config.channel, 80, MIDI_CC_OFF); } return true; }