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 qmk_firmware-a64ae1066250d3aafb6e9670bf617237ec4338e7.zip | |
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) { | |||
| 95 | 95 | ||
| 96 | void reset_keyboard(void) { | 96 | void reset_keyboard(void) { |
| 97 | clear_keyboard(); | 97 | clear_keyboard(); |
| 98 | #ifdef AUDIO_ENABLE | 98 | #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_ENABLE_BASIC)) |
| 99 | stop_all_notes(); | 99 | music_all_notes_off(); |
| 100 | shutdown_user(); | 100 | shutdown_user(); |
| 101 | #endif | 101 | #endif |
| 102 | wait_ms(250); | 102 | wait_ms(250); |
