Browse Source

Fix compilation error when NO_ACTION_LAYER is defined.

pull/1619/head
Joe Wasson 6 years ago
committed by Jack Humbert
parent
commit
bae1144a9f
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

@ -188,10 +188,10 @@ action_t store_or_get_action(bool pressed, keypos_t key)
int8_t layer_switch_get_layer(keypos_t key)
{
#ifndef NO_ACTION_LAYER
action_t action;
action.code = ACTION_TRANSPARENT;
#ifndef NO_ACTION_LAYER
uint32_t layers = layer_state | default_layer_state;
/* check top layer first */
for (int8_t i = 31; i >= 0; i--) {


Loading…
Cancel
Save