diff options
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 457f70a44..61a51aedb 100644 --- a/quantum/keymap_common.c +++ b/quantum/keymap_common.c | |||
@@ -189,7 +189,7 @@ static action_t keycode_to_action(uint16_t keycode) | |||
189 | case RESET: ; // RESET is 0x5000, which is why this is here | 189 | case RESET: ; // RESET is 0x5000, which is why this is here |
190 | clear_keyboard(); | 190 | clear_keyboard(); |
191 | #ifdef AUDIO_ENABLE | 191 | #ifdef AUDIO_ENABLE |
192 | play_notes(&goodbye, 3, false, 0); | 192 | PLAY_NOTE_ARRAY(goodbye, false, 0); |
193 | #endif | 193 | #endif |
194 | _delay_ms(250); | 194 | _delay_ms(250); |
195 | #ifdef ATREUS_ASTAR | 195 | #ifdef ATREUS_ASTAR |
@@ -202,7 +202,7 @@ static action_t keycode_to_action(uint16_t keycode) | |||
202 | debug_enable = true; | 202 | debug_enable = true; |
203 | break; | 203 | break; |
204 | case 0x5002 ... 0x50FF: | 204 | case 0x5002 ... 0x50FF: |
205 | // MAGIC actions (BOOTMAGIC without the boot) | 205 | // MAGIC actions (BOOTMAGIC without the boot) |
206 | if (!eeconfig_is_enabled()) { | 206 | if (!eeconfig_is_enabled()) { |
207 | eeconfig_init(); | 207 | eeconfig_init(); |
208 | } | 208 | } |