Normalise Space Cadet keycodes (#18864)

This commit is contained in:
Ryan
2022-10-27 21:19:16 +11:00
committed by GitHub
parent 8e0945c822
commit 002b58f0e4
226 changed files with 419 additions and 403 deletions

View File

@@ -400,8 +400,8 @@ bool storeShiftState(uint16_t keycode, keyrecord_t *record)
{
switch (keycode)
{
case KC_LSPO:
case KC_RSPC:
case SC_LSPO:
case SC_RSPC:
shifted = true;
}
}
@@ -410,8 +410,8 @@ bool storeShiftState(uint16_t keycode, keyrecord_t *record)
switch (keycode)
{
case KC_LSPO:
case KC_RSPC:
case SC_LSPO:
case SC_RSPC:
shifted = false;
return true;
}