Added default case to process_record_user

I tried using process_record_user and if I had to add the default case for it to compile.
pull/2168/head
kamisamamizu 7 years ago committed by Jack Humbert
parent cca3dcc5ec
commit eab41f7b38

@ -60,6 +60,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
PLAY_NOTE_ARRAY(tone_qwerty);
}
return true; // Let QMK send the enter press/release events
default:
return true; // Process all other keycodes normally
}
}
```

Loading…
Cancel
Save