summaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-22 00:25:54 +1100
committerGitHub <noreply@github.com>2022-10-21 14:25:54 +0100
commitb33fc349671148bff6f0a60172b53c51e59cda49 (patch)
tree18e3aafa86d75a242a7f8ccd53f2fc95824f9dfc /quantum/quantum.c
parent374d5d74804e0a99d93c3685f63f9f709b6ded22 (diff)
Deprecate `KC_LEAD` for `QK_LEAD` (#18792)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 0f94e3855d..add7402550 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -225,7 +225,7 @@ bool process_record_quantum(keyrecord_t *record) {
uint16_t keycode = get_record_keycode(record, true);
// This is how you use actions here
- // if (keycode == KC_LEAD) {
+ // if (keycode == QK_LEADER) {
// action_t action;
// action.code = ACTION_DEFAULT_LAYER_SET(0);
// process_action(record, action);