]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/sixkeyboard/keymaps/default/keymap.c
adds debouncing to sixkeyboard
[qmk_firmware.git] / keyboards / sixkeyboard / keymaps / default / keymap.c
index 641ed790e892ba78b3828c85fae406b793d981be..74ce6f036966ffd5b05b55866569d4cbce380ccc 100644 (file)
@@ -17,16 +17,6 @@ const uint16_t PROGMEM fn_actions[] = {
 
 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);
-          } else {
-            unregister_code(KC_RSFT);
-          }
-        break;
-      }
     return MACRO_NONE;
 };