RESET->QK_BOOT for rp2040

This commit is contained in:
Ilya Zhuravlev 2022-09-11 17:55:56 -06:00
parent 3c6a4e5dac
commit e2baf68401
2 changed files with 7 additions and 7 deletions

View file

@ -71,7 +71,7 @@ void vial_init(void) {
}
__attribute__((unused)) static uint16_t vial_keycode_firewall(uint16_t in) {
if (in == RESET && !vial_unlocked)
if (in == QK_BOOT && !vial_unlocked)
return 0;
return in;
}