Align TO() max layers with other keycodes (#17989)

This commit is contained in:
Joel Challis 2022-08-14 12:25:46 +01:00 committed by GitHub
parent ac31e42974
commit ba04ecfabd
Failed to generate hash of commit
3 changed files with 6 additions and 14 deletions

View file

@ -47,10 +47,9 @@ action_t action_for_keycode(uint16_t keycode) {
keycode = keycode_config(keycode);
action_t action = {};
uint8_t action_layer, when, mod;
uint8_t action_layer, mod;
(void)action_layer;
(void)when;
(void)mod;
switch (keycode) {
@ -85,9 +84,8 @@ action_t action_for_keycode(uint16_t keycode) {
break;
case QK_TO ... QK_TO_MAX:;
// Layer set "GOTO"
when = (keycode >> 0x4) & 0x3;
action_layer = keycode & 0xF;
action.code = ACTION_LAYER_SET(action_layer, when);
action_layer = keycode & 0xFF;
action.code = ACTION_LAYER_GOTO(action_layer);
break;
case QK_MOMENTARY ... QK_MOMENTARY_MAX:;
// Momentary action_layer