forked from mirrors/qmk_userspace
Fix broken build for users/curry (#16492)
This commit is contained in:
parent
1acb37db7f
commit
9ead40db0c
13 changed files with 96 additions and 9 deletions
|
@ -43,9 +43,24 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
|
|||
#define KC_SEC5 KC_SECRET_5
|
||||
|
||||
#define QWERTY KC_QWERTY
|
||||
#define DVORAK KC_DVORAK
|
||||
#define COLEMAK KC_COLEMAK
|
||||
#define WORKMAN KC_WORKMAN
|
||||
#define DVORAK KC_NO
|
||||
#define COLEMAK KC_NO
|
||||
#define WORKMAN KC_NO
|
||||
|
||||
#if defined(ENABLE_DVORAK)
|
||||
# undef DVORAK
|
||||
# define DVORAK KC_DVORAK
|
||||
#endif
|
||||
|
||||
#if defined(ENABLE_COLEMAK)
|
||||
# undef COLEMAK
|
||||
# define COLEMAK KC_COLEMAK
|
||||
#endif
|
||||
|
||||
#if defined(ENABLE_WORKMAN)
|
||||
# undef WORKMAN
|
||||
# define WORKMAN KC_WORKMAN
|
||||
#endif
|
||||
|
||||
#define KC_RST RESET
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue