summaryrefslogtreecommitdiffstats
path: root/common/bootmagic.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/bootmagic.c')
-rw-r--r--common/bootmagic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bootmagic.c b/common/bootmagic.c
index 46fbc180a..388099e2e 100644
--- a/common/bootmagic.c
+++ b/common/bootmagic.c
@@ -10,12 +10,12 @@
void bootmagic(void)
{
+ if (!BOOTMAGIC_IS_ENABLED()) { return; }
+
/* do scans in case of bounce */
uint8_t scan = 100;
while (scan--) { matrix_scan(); _delay_ms(1); }
- if (!BOOTMAGIC_IS_ENABLE()) { return; }
-
if (bootmagic_scan_keycode(BOOTMAGIC_BOOTLOADER_KEY)) {
bootloader_jump();
}