summaryrefslogtreecommitdiff
path: root/keyboards/sixshooter/sixshooter.c
diff options
context:
space:
mode:
authorNicholas Shaff <nick@shadedream.com>2018-12-05 11:35:26 -0600
committerDrashna Jaelre <drashna@live.com>2018-12-05 09:35:26 -0800
commitd0da43fbdcb78603b34bcf6c0718e104b593c5ce (patch)
tree46d72e36f794b90f57642efbcaf209a849872590 /keyboards/sixshooter/sixshooter.c
parent7d4955b2c453828ab8ba315720ce73e4dae0a0c3 (diff)
Keyboard: Updated sixshooter keyboard to move LED macros into the default keymap. (#4428)
Diffstat (limited to 'keyboards/sixshooter/sixshooter.c')
-rw-r--r--keyboards/sixshooter/sixshooter.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/keyboards/sixshooter/sixshooter.c b/keyboards/sixshooter/sixshooter.c
index 814d219a29..87a739454d 100644
--- a/keyboards/sixshooter/sixshooter.c
+++ b/keyboards/sixshooter/sixshooter.c
@@ -31,25 +31,6 @@ void matrix_scan_kb(void) {
matrix_scan_user();
}
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
- if (record->event.pressed) {
-
- /* Check for custom keycodes for turning on and off LEDs */
- switch(keycode) {
- case SS_LON:
- sixshooter_led_all_on();
- return false;
- case SS_LOFF:
- sixshooter_led_all_off();
- return false;
- }
- }
-
- return process_record_user(keycode, record);
-}
-
void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here