logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 27d24faf396367d9f8fadd86324e584b5403d261
parent ca9b85f7021ed1338de5af0fd30c6095522a1197
Author: Jack Humbert <jack.humb@gmail.com>
Date:   Thu, 28 Apr 2016 23:10:40 -0400

adds condition to one last audio ref in planck default

Diffstat:

Mkeyboard/planck/keymaps/default/keymap.c4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/keyboard/planck/keymaps/default/keymap.c b/keyboard/planck/keymaps/default/keymap.c @@ -325,7 +325,9 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) layer_off(_LOWER); layer_off(_ADJUST); layer_off(_MUSIC); - stop_all_notes(); + #ifdef AUDIO_ENABLE + stop_all_notes(); + #endif layer_on(_PLOVER); if (!eeconfig_is_enabled()) { eeconfig_init();