Fix broken build for users/curry (#16492)

This commit is contained in:
Allen Choi 2022-04-19 20:00:01 +09:00 committed by GitHub
parent 1acb37db7f
commit 9ead40db0c
Failed to generate hash of commit
13 changed files with 96 additions and 9 deletions

View file

@ -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