diff options
author | IBNobody <protospherex@gmail.com> | 2016-04-15 13:09:42 -0500 |
---|---|---|
committer | IBNobody <protospherex@gmail.com> | 2016-04-15 13:09:42 -0500 |
commit | 39e520c010072aa17c0bcb2c5bfbbee08e010170 (patch) | |
tree | 4f9b28ad7bc26f2b62ee2bd966b04cbd0f1f5e79 /quantum/keymap_common.c | |
parent | 66c1024bd328b687fba0645f70469094e75d624c (diff) | |
parent | ee2ee7f4f049dda385a9db7dddd8e7e91681315b (diff) |
Prepping for merge with new_defaults
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r-- | quantum/keymap_common.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c index ae6cddb343..e3030a8869 100644 --- a/quantum/keymap_common.c +++ b/quantum/keymap_common.c @@ -33,11 +33,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "audio.h" float goodbye[][2] = { - {440.0*pow(2.0,(67)/12.0), 400}, - {0, 50}, - {440.0*pow(2.0,(60)/12.0), 400}, - {0, 50}, - {440.0*pow(2.0,(55)/12.0), 600}, + {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}, }; #endif @@ -90,7 +88,7 @@ action_t action_for_key(uint8_t layer, keypos_t key) action_t action; clear_keyboard(); #ifdef AUDIO_ENABLE - play_notes(&goodbye, 5, false); + play_notes(&goodbye, 3, false); #endif _delay_ms(250); #ifdef ATREUS_ASTAR |