From 79203031df30447788f6207db660556d0da76f34 Mon Sep 17 00:00:00 2001 From: AkariiinMKII <6019344+AkariiinMKII@users.noreply.github.com> Date: Thu, 4 Sep 2025 00:04:36 +0800 Subject: [PATCH] Reorder MAGIC_NO_GUI and MAGIC_UNNO_GUI --- quantum/vial_ensure_keycode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/vial_ensure_keycode.h b/quantum/vial_ensure_keycode.h index 320db887b1..0981469e6a 100644 --- a/quantum/vial_ensure_keycode.h +++ b/quantum/vial_ensure_keycode.h @@ -523,8 +523,8 @@ _Static_assert(MAGIC_UNSWAP_RALT_RGUI == 0x7008, ""); _Static_assert(MAGIC_SWAP_ALT_GUI == 0x7014, ""); _Static_assert(MAGIC_UNSWAP_ALT_GUI == 0x7015, ""); _Static_assert(MAGIC_TOGGLE_ALT_GUI == 0x7016, ""); -_Static_assert(MAGIC_NO_GUI == 0x700A, ""); _Static_assert(MAGIC_UNNO_GUI == 0x7009, ""); +_Static_assert(MAGIC_NO_GUI == 0x700A, ""); _Static_assert(MAGIC_TOGGLE_GUI == 0x700B, ""); _Static_assert(MAGIC_SWAP_GRAVE_ESC == 0x700C, ""); _Static_assert(MAGIC_UNSWAP_GRAVE_ESC == 0x700D, "");