diff options
author | Joe Wasson <jwasson+github@gmail.com> | 2017-08-19 23:04:16 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-08-20 12:32:20 -0400 |
commit | fe60cbd928f2535a5cbc0b29c29397374ec91ac1 (patch) | |
tree | e01c40906374bf36d653c691160f74fd84f0e36b /keyboards/planck/keymaps/dale | |
parent | f94963e6b7e285a3e9ce6a807da77fad508791a4 (diff) | |
download | qmk_firmware-fe60cbd928f2535a5cbc0b29c29397374ec91ac1.tar.gz qmk_firmware-fe60cbd928f2535a5cbc0b29c29397374ec91ac1.zip |
Remove PLAY_NOTE_ARRAY usages to get rid of warning.
Diffstat (limited to 'keyboards/planck/keymaps/dale')
-rw-r--r-- | keyboards/planck/keymaps/dale/keymap.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/keyboards/planck/keymaps/dale/keymap.c b/keyboards/planck/keymaps/dale/keymap.c index caf0003d24..5682f0b4b8 100644 --- a/keyboards/planck/keymaps/dale/keymap.c +++ b/keyboards/planck/keymaps/dale/keymap.c @@ -74,7 +74,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { }, -/* Lower (switched to # because KP# were weird in terminal emulators) +/* Lower (switched to # because KP# were weird in terminal emulators) * ,-----------------------------------------------------------------------------------. * | Del | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp | * |------+------+------+------+------+-------------+------+------+------+------+------| @@ -92,7 +92,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { {KC_ESC, _______, _______, _______, _______, KC_0, KC_0, _______, _______, _______, KC_PLUS, _______} }, -/* Raise +/* Raise * ,-----------------------------------------------------------------------------------. * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Del | * |------+------+------+------+------+-------------+------+------+------+------+------| @@ -164,7 +164,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { case QWERTY: if (record->event.pressed) { #ifdef AUDIO_ENABLE - PLAY_NOTE_ARRAY(tone_qwerty, false, 0); + PLAY_SONG(tone_qwerty); #endif persistant_default_layer_set(1UL<<_QWERTY); } @@ -173,14 +173,14 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { case GAME: if (record->event.pressed) { #ifdef AUDIO_ENABLE - PLAY_NOTE_ARRAY(music_scale, false, 0); + PLAY_SONG(music_scale); #endif persistant_default_layer_set(1UL<<_GAME); } return false; break; - - + + case LOWER: if (record->event.pressed) { layer_on(_LOWER); @@ -227,12 +227,12 @@ void matrix_init_user(void) { void startup_user() { _delay_ms(20); // gets rid of tick - PLAY_NOTE_ARRAY(tone_startup, false, 0); + PLAY_SONG(tone_startup); } void shutdown_user() { - PLAY_NOTE_ARRAY(tone_goodbye, false, 0); + PLAY_SONG(tone_goodbye); _delay_ms(150); stop_all_notes(); } @@ -244,7 +244,7 @@ void music_on_user(void) void music_scale_user(void) { - PLAY_NOTE_ARRAY(music_scale, false, 0); + PLAY_SONG(music_scale); } #endif |