summaryrefslogtreecommitdiff
path: root/quantum/keymap_common.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-04-16 20:26:02 -0400
committerJack Humbert <jack.humb@gmail.com>2016-04-16 20:26:02 -0400
commitc83aa16f1d614c1c10f7597a67ffb9f2ae871951 (patch)
tree6d61c4f255c4ddbc98085a9758693a877e5190b5 /quantum/keymap_common.c
parentb8d2e66638409066661e7dd3c66473d583256ec5 (diff)
fixes audio prescaler to emit correct freq
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r--quantum/keymap_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c
index b919166853..899437f447 100644
--- a/quantum/keymap_common.c
+++ b/quantum/keymap_common.c
@@ -35,9 +35,9 @@ extern keymap_config_t keymap_config;
#include "audio.h"
float goodbye[][2] = {
- {440.0*pow(2.0,(67)/12.0), 8},
- {440.0*pow(2.0,(60)/12.0), 8},
- {440.0*pow(2.0,(55)/12.0), 12},
+ {440.0*pow(2.0,(31)/12.0), 8},
+ {440.0*pow(2.0,(24)/12.0), 8},
+ {440.0*pow(2.0,(19)/12.0), 12},
};
#endif