aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/2x5keypad
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-11-21 22:40:29 -0800
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2019-11-21 22:40:29 -0800
commit6cf574396adfb08f7fe7fe6f7ce68387fd474018 (patch)
treed83695e2b7e2b7ba2b53869d24cadde0a4d8e788 /keyboards/handwired/2x5keypad
parentf0a9c10b6d70424ed43d624f5fdb6d5f8388953f (diff)
downloadfirmware-6cf574396adfb08f7fe7fe6f7ce68387fd474018.tar.gz
firmware-6cf574396adfb08f7fe7fe6f7ce68387fd474018.tar.bz2
firmware-6cf574396adfb08f7fe7fe6f7ce68387fd474018.zip
[Keyboard] Update default keymaps to use `layer_state_t` (#7444)
* Update default keymaps to use `layer_state_t` * Convert binon32 as get_highest_layer in default keymaps
Diffstat (limited to 'keyboards/handwired/2x5keypad')
-rw-r--r--keyboards/handwired/2x5keypad/keymaps/default/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/2x5keypad/keymaps/default/keymap.c b/keyboards/handwired/2x5keypad/keymaps/default/keymap.c
index 91a0e28f6..23614a9b7 100644
--- a/keyboards/handwired/2x5keypad/keymaps/default/keymap.c
+++ b/keyboards/handwired/2x5keypad/keymaps/default/keymap.c
@@ -143,7 +143,7 @@ layer_state_t layer_state_set_user(layer_state_t state)
{
turn_off_leds();
- switch (biton32(state))
+ switch (get_highest_layer(state))
{
case NORMAL_LAYER:
break;