aboutsummaryrefslogtreecommitdiff
path: root/keyboards/atreus62/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/atreus62/keymaps/default/keymap.c')
-rw-r--r--keyboards/atreus62/keymaps/default/keymap.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/keyboards/atreus62/keymaps/default/keymap.c b/keyboards/atreus62/keymaps/default/keymap.c
index e39f5ad12..06c7ae309 100644
--- a/keyboards/atreus62/keymaps/default/keymap.c
+++ b/keyboards/atreus62/keymaps/default/keymap.c
@@ -46,18 +46,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
46 ), 46 ),
47 */ 47 */
48}; 48};
49
50const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
51 // MACRODOWN only works in this function
52 switch (id) {
53 case 0:
54 if (record->event.pressed) {
55 register_code(KC_RSFT);
56 }
57 else {
58 unregister_code(KC_RSFT);
59 }
60 break;
61 }
62 return MACRO_NONE;
63};