From 8c164726e8255ffb61ea0aa28d8143775ab4c208 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Thu, 6 Jun 2019 15:37:34 -0700 Subject: [PATCH] Remove dynamic_keymap check --- tmk_core/common/action_layer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmk_core/common/action_layer.h b/tmk_core/common/action_layer.h index 1ecc0974da..a2734a29ee 100644 --- a/tmk_core/common/action_layer.h +++ b/tmk_core/common/action_layer.h @@ -21,7 +21,7 @@ along with this program. If not, see . #include "keyboard.h" #include "action.h" -#if defined(LAYER_STATE_8BIT) || ( defined(DYNAMIC_KEYMAP_ENABLE) && DYNAMIC_KEYMAP_LAYER_COUNT >= 8 ) +#if defined(LAYER_STATE_8BIT) typedef uint8_t layer_state_t; #define get_highest_layer(state) biton8(state) #elif defined(LAYER_STATE_16BIT)