Skip to content

Commit

Permalink
Format code according to conventions (qmk#12056)
Browse files Browse the repository at this point in the history
Co-authored-by: QMK Bot <hello@qmk.fm>
  • Loading branch information
2 people authored and AnthonyAmanse committed Apr 26, 2021
1 parent 3da6b98 commit f7f1771
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion quantum/bootmagic/bootmagic_full.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void bootmagic(void) {
default_layer |= (1 << 5);
} else if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEFAULT_LAYER_6)) {
default_layer |= (1 << 6);
} else if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEFAULT_LAYER_7)) {ypoint (#8532):quantum/bootmagic/bootmagic_full.c
} else if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEFAULT_LAYER_7)) {
default_layer |= (1 << 7);
}
eeconfig_update_default_layer(default_layer);
Expand All @@ -142,4 +142,6 @@ void bootmagic(void) {
if (bootmagic_scan_keycode(BOOTMAGIC_KEY_EE_HANDS_LEFT)) {
eeconfig_update_handedness(true);
} else if (bootmagic_scan_keycode(BOOTMAGIC_KEY_EE_HANDS_RIGHT)) {
eeconfig_update_handedness(false);
}
}

0 comments on commit f7f1771

Please sign in to comment.