Add basic layer to sample MIDI keycap

This commit is contained in:
Gabriel Young 2017-02-25 19:37:33 -08:00
parent 1000799d1e
commit ea14ed122f
3 changed files with 25 additions and 3 deletions

View file

@ -142,7 +142,8 @@ bool process_music(uint16_t keycode, keyrecord_t *record) {
if (keycode < 0xFF) // ignores all normal keycodes, but lets RAISE, LOWER, etc through
return false;
}
return true;
return true;
}
bool is_music_on(void) {