summaryrefslogtreecommitdiffstats
path: root/users/xulkal
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-11-16 03:52:01 +1100
committerGitHub <noreply@github.com>2022-11-15 16:52:01 +0000
commitde66797705ef0e490e5deca0545f009c351f5f45 (patch)
tree86e435ee5b6ff7a4f1d47a5337818e59d85191e9 /users/xulkal
parent594f869619884519692319a44da394f8959d4cdf (diff)
Fix some old keycodes (#19086)
Diffstat (limited to 'users/xulkal')
-rw-r--r--users/xulkal/layouts.h4
-rw-r--r--users/xulkal/process_records.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/users/xulkal/layouts.h b/users/xulkal/layouts.h
index ccf466166e..9eec97ac6e 100644
--- a/users/xulkal/layouts.h
+++ b/users/xulkal/layouts.h
@@ -81,7 +81,7 @@
*/
#define __________________LOWER_L1_________________ _______, RGB_RMOD, RGB_MOD, RGB_TOG, _______, _______
-#define __________________LOWER_L2_________________ RGB_SPI, RGB_SAI, RGB_VAI, RGB_HUI, RESET, _______
+#define __________________LOWER_L2_________________ RGB_SPI, RGB_SAI, RGB_VAI, RGB_HUI, QK_BOOT, _______
#define __________________LOWER_L3_________________ RGB_SPD, RGB_SAD, RGB_VAD, RGB_HUD, RGBRST, _______
#define __________________LOWER_L4_________________ _______, _______, _______, _______, _______, _______
#define __________________LOWER_L5_________________ _______, _______, _______, _______, _______, _______
@@ -107,7 +107,7 @@
*/
#define _________________ADJUST_L1_________________ _______, _______, _______, _______, _______, _______
-#define _________________ADJUST_L2_________________ _______, RESET, DB_TOGG, _______, _______, _______
+#define _________________ADJUST_L2_________________ _______, QK_BOOT, DB_TOGG, _______, _______, _______
#define _________________ADJUST_L3_________________ _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM
#define _________________ADJUST_L4_________________ _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON
#define _________________ADJUST_L5_________________ _______, _______, _______, _______, _______, _______
diff --git a/users/xulkal/process_records.c b/users/xulkal/process_records.c
index 47996110bb..804dd4677a 100644
--- a/users/xulkal/process_records.c
+++ b/users/xulkal/process_records.c
@@ -29,7 +29,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record)
rgb_reset();
#endif
return false;
- case RESET:
+ case QK_BOOT:
{
if (record->event.pressed)
reset_timer = timer_read() + 500;