diff options
Diffstat (limited to 'keyboards/nyquist/rev1/rev1.c')
-rw-r--r-- | keyboards/nyquist/rev1/rev1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/nyquist/rev1/rev1.c b/keyboards/nyquist/rev1/rev1.c index fc984e18c..7b3228fa6 100644 --- a/keyboards/nyquist/rev1/rev1.c +++ b/keyboards/nyquist/rev1/rev1.c @@ -1,4 +1,4 @@ -#include "nyquist.h" +#include QMK_SUBPROJECT_H #ifdef AUDIO_ENABLE float tone_startup[][2] = SONG(STARTUP_SOUND); @@ -16,7 +16,7 @@ void matrix_init_kb(void) { #ifdef AUDIO_ENABLE _delay_ms(20); // gets rid of tick - PLAY_NOTE_ARRAY(tone_startup, false, 0); + PLAY_SONG(tone_startup); #endif // // green led on @@ -32,7 +32,7 @@ void matrix_init_kb(void) { void shutdown_user(void) { #ifdef AUDIO_ENABLE - PLAY_NOTE_ARRAY(tone_goodbye, false, 0); + PLAY_SONG(tone_goodbye); _delay_ms(150); stop_all_notes(); #endif |