update music functionality

This commit is contained in:
Jack Humbert 2018-01-06 23:52:20 -05:00
parent 8582faab6f
commit 7923376de1
7 changed files with 212 additions and 147 deletions

View file

@ -38,13 +38,13 @@ bool process_audio(uint16_t keycode, keyrecord_t *record) {
}
if (keycode == MUV_IN && record->event.pressed) {
voice_iterate();
all_voices_iterate();
PLAY_SONG(voice_change_song);
return false;
}
if (keycode == MUV_DE && record->event.pressed) {
voice_deiterate();
all_voices_deiterate();
PLAY_SONG(voice_change_song);
return false;
}