diff options
author | fauxpark <fauxpark@gmail.com> | 2019-02-18 02:38:46 +1100 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-02-17 07:38:46 -0800 |
commit | 3b2a484a5b9b0ddc2e110d5bc40f249ee62352d6 (patch) | |
tree | c1a2f96bda4861d70b7b43291b5e09d82ceadb10 /keyboards/xd60 | |
parent | 8911870b45325a6c5626dbe63fbc7daf4423adca (diff) | |
download | qmk_firmware-3b2a484a5b9b0ddc2e110d5bc40f249ee62352d6.tar.gz qmk_firmware-3b2a484a5b9b0ddc2e110d5bc40f249ee62352d6.zip |
Remove redundant KC_TRNS and KC_NO fillers in remaining keymaps (#5154)
Diffstat (limited to 'keyboards/xd60')
-rw-r--r-- | keyboards/xd60/keymaps/krusli/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/xd60/keymaps/rooski/keymap.c | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/keyboards/xd60/keymaps/krusli/keymap.c b/keyboards/xd60/keymaps/krusli/keymap.c index 6a460cd34a..b34b4dfbcf 100644 --- a/keyboards/xd60/keymaps/krusli/keymap.c +++ b/keyboards/xd60/keymaps/krusli/keymap.c @@ -1,8 +1,6 @@ #include QMK_KEYBOARD_H #include "action_layer.h" -#define _______ KC_TRNS - #define _BASE 0 #define _FN 1 diff --git a/keyboards/xd60/keymaps/rooski/keymap.c b/keyboards/xd60/keymaps/rooski/keymap.c index bea96a30d9..624c118bf3 100644 --- a/keyboards/xd60/keymaps/rooski/keymap.c +++ b/keyboards/xd60/keymaps/rooski/keymap.c @@ -8,9 +8,6 @@ // Define tapping term #define TAPPING_TERM 150 -// Fillers to make layering more clear -#define _______ KC_TRNS -#define XXXXXXX KC_NO // Layer definitions~ #define _BL 0 #define _FL 1 @@ -79,4 +76,4 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { // Loop void matrix_scan_user(void) { // Empty -};
\ No newline at end of file +}; |