diff options
Diffstat (limited to 'keyboards/xd75/keymaps/kloki/keymap.c')
-rw-r--r-- | keyboards/xd75/keymaps/kloki/keymap.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/xd75/keymaps/kloki/keymap.c b/keyboards/xd75/keymaps/kloki/keymap.c index d9a67e8b75..a630019347 100644 --- a/keyboards/xd75/keymaps/kloki/keymap.c +++ b/keyboards/xd75/keymaps/kloki/keymap.c @@ -65,24 +65,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ) }; -const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) -{ - // MACRODOWN only works in this function - switch(id) { - case 0: - if (record->event.pressed) { - register_code(KC_RSFT); - #ifdef BACKLIGHT_ENABLE - backlight_step(); - #endif - } else { - unregister_code(KC_RSFT); - } - break; - } - return MACRO_NONE; -}; - bool CTRLDOWN = false; bool WINDOWN = false; bool SHIFTDOWN = false; |