summaryrefslogtreecommitdiff
path: root/quantum/keymap.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2022-01-21 20:59:19 -0800
committerGitHub <noreply@github.com>2022-01-22 04:59:19 +0000
commit909003cce92ada1094d40ef4ea31574227070d31 (patch)
tree9ae01af5816a462ee78679f7af3d63d6d0d5b43d /quantum/keymap.h
parent3a27f065b74a6f55d336384a7095caf3db7c1692 (diff)
[Bug] Fix hack for chibiOS reset name (#15984)
Diffstat (limited to 'quantum/keymap.h')
-rw-r--r--quantum/keymap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/keymap.h b/quantum/keymap.h
index 191e813977..3fc41cafd8 100644
--- a/quantum/keymap.h
+++ b/quantum/keymap.h
@@ -35,9 +35,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "keycode_config.h"
// ChibiOS uses RESET in its FlagStatus enumeration
-// Therefore define it as QK_RESET here, to avoid name collision
+// Therefore define it as QK_BOOTLOADER here, to avoid name collision
#if defined(PROTOCOL_CHIBIOS)
-# define RESET QK_RESET
+# define RESET QK_BOOTLOADER
#endif
// Gross hack, remove me and change RESET keycode to QK_BOOT
#if defined(__AVR_AT90USB647__) || defined(__AVR_AT90USB1287__)