diff options
author | Gabriel Young <gabeplaysdrums@live.com> | 2017-02-25 20:41:13 -0800 |
---|---|---|
committer | Gabriel Young <gabeplaysdrums@live.com> | 2017-02-25 20:41:13 -0800 |
commit | a64ae1066250d3aafb6e9670bf617237ec4338e7 (patch) | |
tree | 9d91360888e2f14c7d7fe84d0a821c629a7340d3 /quantum/quantum.c | |
parent | ea14ed122fb5c1b3be5f5d6edda9b39b151692e5 (diff) | |
download | qmk_firmware-a64ae1066250d3aafb6e9670bf617237ec4338e7.tar.gz |
Update existing keymaps
Update existing keymaps to enable MIDI_BASIC functionality. Also added
an option MIDI_ENABLE_STRICT to be strict about keycode use (which also
reduces memory footprint at runtime)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 7a27a568a..a4a12061b 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -95,8 +95,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { void reset_keyboard(void) { clear_keyboard(); -#ifdef AUDIO_ENABLE - stop_all_notes(); +#if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_ENABLE_BASIC)) + music_all_notes_off(); shutdown_user(); #endif wait_ms(250); |