summaryrefslogtreecommitdiffstats
path: root/keyboards/mechwild/mercutio
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-08-21 23:55:30 +0100
committerGitHub <noreply@github.com>2022-08-21 23:55:30 +0100
commitbbc3bc55f2d52b90881470695ee132f5a57bfaa3 (patch)
tree718be2129ad11b6c6578fb8aaf1bfbf02bde9476 /keyboards/mechwild/mercutio
parente36ae90a651df6ccad5f6d125135ee0240a01f02 (diff)
RESET -> QK_BOOT user keymaps (#17940)
Diffstat (limited to 'keyboards/mechwild/mercutio')
-rwxr-xr-xkeyboards/mechwild/mercutio/keymaps/jonavin/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c b/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c
index 5447279e56..5c22abee3f 100755
--- a/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c
+++ b/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c
@@ -68,7 +68,7 @@ static const keycodedescType PROGMEM keyselection[] = {
{"C-A-D", KC_CAD}, // Ctrl-Alt-Del
{"AltF4", KC_AF4},
{"PLAY", KC_MEDIA_PLAY_PAUSE},
- {"FLASH", RESET}, // firmware flash mode
+ {"FLASH", QK_BOOT}, // firmware flash mode
};
#define MAX_KEYSELECTION sizeof(keyselection)/sizeof(keyselection[0])
@@ -93,7 +93,7 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case ENCFUNC:
if (record->event.pressed) {
- selectedkey_rec.keycode == RESET ? reset_keyboard() : tap_code16(selectedkey_rec.keycode); // handle RESET code
+ selectedkey_rec.keycode == QK_BOOT ? reset_keyboard() : tap_code16(selectedkey_rec.keycode); // handle QK_BOOT code
} else {
// when keycode is released
}