aboutsummaryrefslogtreecommitdiff
path: root/quantum/keymap_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r--quantum/keymap_common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c
index 02d3c74be..d38e6fdb2 100644
--- a/quantum/keymap_common.c
+++ b/quantum/keymap_common.c
@@ -33,14 +33,14 @@ extern keymap_config_t keymap_config;
33#include <inttypes.h> 33#include <inttypes.h>
34#ifdef AUDIO_ENABLE 34#ifdef AUDIO_ENABLE
35 #include "audio.h" 35 #include "audio.h"
36 #ifndef GOODBYE_TUNE 36 #ifndef TONE_GOODBYE
37 #define GOODBYE_TUNE { \ 37 #define TONE_GOODBYE { \
38 {440.0*pow(2.0,(31)/12.0), 8}, \ 38 {440.0*pow(2.0,(31)/12.0), 8}, \
39 {440.0*pow(2.0,(24)/12.0), 8}, \ 39 {440.0*pow(2.0,(24)/12.0), 8}, \
40 {440.0*pow(2.0,(19)/12.0), 12}, \ 40 {440.0*pow(2.0,(19)/12.0), 12}, \
41 } 41 }
42 #endif 42 #endif
43 float goodbye_tune[][2] = GOODBYE_TUNE; 43 float tone_goodbye[][2] = TONE_GOODBYE;
44#endif 44#endif
45 45
46static action_t keycode_to_action(uint16_t keycode); 46static action_t keycode_to_action(uint16_t keycode);
@@ -191,7 +191,7 @@ static action_t keycode_to_action(uint16_t keycode)
191 case RESET: ; // RESET is 0x5000, which is why this is here 191 case RESET: ; // RESET is 0x5000, which is why this is here
192 clear_keyboard(); 192 clear_keyboard();
193 #ifdef AUDIO_ENABLE 193 #ifdef AUDIO_ENABLE
194 PLAY_NOTE_ARRAY(goodbye_tune, false, 0); 194 PLAY_NOTE_ARRAY(tone_goodbye, false, 0);
195 #endif 195 #endif
196 _delay_ms(250); 196 _delay_ms(250);
197 #ifdef ATREUS_ASTAR 197 #ifdef ATREUS_ASTAR