diff options
author | IBNobody <ibnobody@gmail.com> | 2016-04-16 22:10:18 -0500 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-04-16 22:10:18 -0500 |
commit | 45f10b4c4b308226fa1568277654a13853a03ab4 (patch) | |
tree | 640e6e7f414d89490fbbde058da1da0d1be98411 /quantum/keymap_common.c | |
parent | 12a9b2b9aeb59a16602374dab202df2bbe256be4 (diff) | |
download | qmk_firmware-45f10b4c4b308226fa1568277654a13853a03ab4.tar.gz qmk_firmware-45f10b4c4b308226fa1568277654a13853a03ab4.zip |
Fixed how note arrays are used.
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r-- | quantum/keymap_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c index 457f70a448..61a51aedb4 100644 --- a/quantum/keymap_common.c +++ b/quantum/keymap_common.c @@ -189,7 +189,7 @@ static action_t keycode_to_action(uint16_t keycode) case RESET: ; // RESET is 0x5000, which is why this is here clear_keyboard(); #ifdef AUDIO_ENABLE - play_notes(&goodbye, 3, false, 0); + PLAY_NOTE_ARRAY(goodbye, false, 0); #endif _delay_ms(250); #ifdef ATREUS_ASTAR @@ -202,7 +202,7 @@ static action_t keycode_to_action(uint16_t keycode) debug_enable = true; break; case 0x5002 ... 0x50FF: - // MAGIC actions (BOOTMAGIC without the boot) + // MAGIC actions (BOOTMAGIC without the boot) if (!eeconfig_is_enabled()) { eeconfig_init(); } |