aboutsummaryrefslogtreecommitdiff
path: root/keyboards/matrix/noah/noah.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/matrix/noah/noah.c')
-rw-r--r--keyboards/matrix/noah/noah.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/matrix/noah/noah.c b/keyboards/matrix/noah/noah.c
index 22d159328a..959490e4f7 100644
--- a/keyboards/matrix/noah/noah.c
+++ b/keyboards/matrix/noah/noah.c
@@ -95,21 +95,3 @@ const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = {
{1, C9_16, C7_15, C6_15}, // RGB5012
};
#endif
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- if (record->event.pressed) {
- switch(keycode) {
- #ifdef RGB_MATRIX_ENABLE
- case KC_F13: // toggle rgb matrix
- rgb_matrix_toggle();
- return false;
- case KC_F14:
- rgb_matrix_step();
- return false;
- #endif
- default:
- break;
- }
- }
- return process_record_user(keycode, record);
-}