Explorar o código

fixes 'layer_state_cmp' when layer is '1' (aka layer 0, aka layer 1<<0)

Colin T.A. Gray %!s(int64=7) %!d(string=hai) anos
pai
achega
3aec9a4354
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      tmk_core/common/action_layer.c

+ 2 - 2
tmk_core/common/action_layer.c

@@ -94,8 +94,8 @@ bool layer_state_is(uint8_t layer)
 }
 
 bool layer_state_cmp(uint32_t cmp_layer_state, uint8_t layer) {
-    if (layer == 0) { return cmp_layer_state == 0; }
-    return (cmp_layer_state & (1UL<<layer)) > 0;
+    if (!cmp_layer_state) { return layer == 0; }
+    return (cmp_layer_state & (1UL<<layer)) != 0;
 }
 
 void layer_move(uint8_t layer)