Browse Source

Fix bit count calculation for iterating layers

pull/5920/head 0.6.382
Ryan Caltabiano 5 years ago
committed by Drashna Jaelre
parent
commit
ba26736d7e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/common/action_layer.c

+ 1
- 1
tmk_core/common/action_layer.c View File

@ -303,7 +303,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)-1; i >= 0; i--) {
for (int8_t i = sizeof(layer_state_t) * 8 - 1; i >= 0; i--) {
if (layers & (1UL << i)) {
action = action_for_key(i, key);
if (action.code != ACTION_TRANSPARENT) {


Loading…
Cancel
Save