diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-22 11:06:01 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-22 11:06:01 -0400 |
commit | 55cf9db564e66e2804f2d3f2201c55c3c86a90d7 (patch) | |
tree | 5b3ae3a9631f8e9271a435ed4b3064b1d43f6b71 /app/include/zmk/keymap.h | |
parent | 8027be106eef7671604695a1a0f0e2828839ceb3 (diff) |
Fix consumer keys w/ refactored behaviors.
Diffstat (limited to 'app/include/zmk/keymap.h')
-rw-r--r-- | app/include/zmk/keymap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h index 38c1249..4a6bb37 100644 --- a/app/include/zmk/keymap.h +++ b/app/include/zmk/keymap.h @@ -1,6 +1,6 @@ #pragma once -bool zmk_keymap_layer_activate(u8_t layer); -bool zmk_keymap_layer_deactivate(u8_t layer); +int zmk_keymap_layer_activate(u8_t layer); +int zmk_keymap_layer_deactivate(u8_t layer); int zmk_keymap_position_state_changed(u32_t position, bool pressed); |