summaryrefslogtreecommitdiffstats
path: root/quantum/audio/audio.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-07-22 06:14:26 +0200
committerJack Humbert <jack.humb@gmail.com>2017-07-23 20:59:29 +0200
commit415d38ba9ee20424ce354ed5f8e590fae58b863f (patch)
tree663b609ace954533aff4a964b4c7cb3300bd73cd /quantum/audio/audio.h
parent9abbbe70890ee0a0c619411c76a2c7b82b1b49d5 (diff)
downloadqmk_firmware-415d38ba9ee20424ce354ed5f8e590fae58b863f.tar.gz
qmk_firmware-415d38ba9ee20424ce354ed5f8e590fae58b863f.tar.xz
adds music mode, music mode songs, music mask
Diffstat (limited to 'quantum/audio/audio.h')
-rw-r--r--quantum/audio/audio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/audio/audio.h b/quantum/audio/audio.h
index e29770e3b..79e0da229 100644
--- a/quantum/audio/audio.h
+++ b/quantum/audio/audio.h
@@ -100,8 +100,8 @@ void play_notes(float (*np)[][2], uint16_t n_count, bool n_repeat);
#define NOTE_ARRAY_SIZE(x) ((int16_t)(sizeof(x) / (sizeof(x[0]))))
#define PLAY_NOTE_ARRAY(note_array, note_repeat, deprecated_arg) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), (note_repeat)); \
_Pragma ("message \"'PLAY_NOTE_ARRAY' macro is deprecated\"")
-#define PLAY_SONG(note_array) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), false);
-#define PLAY_LOOP(note_array) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), true);
+#define PLAY_SONG(note_array) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), false)
+#define PLAY_LOOP(note_array) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), true)
bool is_playing_notes(void);