Merge pull request #794 from AGausmann/midi-patch

Missing ifdef statement
This commit is contained in:
Jack Humbert 2016-09-29 23:32:23 -04:00 committed by GitHub
commit 7c76d36454
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ int midi_offset = 7;
bool process_midi(uint16_t keycode, keyrecord_t *record) {
if (keycode == MI_ON && record->event.pressed) {
midi_activated = true;
#ifdef AUDIO_ENABLE
music_scale_user();
#endif
return false;
}
@ -63,4 +65,4 @@ bool process_midi(uint16_t keycode, keyrecord_t *record) {
return false;
}
return true;
}
}