forked from mirrors/qmk_userspace
Optimization for scanning less layers. (#8311)
* Optimization for scanning less layers. * Rename NUM_LAYERS to MAX_LAYER.
This commit is contained in:
parent
d15a60d2d3
commit
361ac2f32a
2 changed files with 14 additions and 3 deletions
|
@ -257,7 +257,7 @@ uint8_t layer_switch_get_layer(keypos_t key) {
|
|||
|
||||
layer_state_t layers = layer_state | default_layer_state;
|
||||
/* check top layer first */
|
||||
for (int8_t i = sizeof(layer_state_t) * 8 - 1; i >= 0; i--) {
|
||||
for (int8_t i = MAX_LAYER - 1; i >= 0; i--) {
|
||||
if (layers & (1UL << i)) {
|
||||
action = action_for_key(i, key);
|
||||
if (action.code != ACTION_TRANSPARENT) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue