diff options
author | Yan-Fa Li <yanfali@gmail.com> | 2019-06-11 02:45:00 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-06-11 02:45:00 -0700 |
commit | d0c29f25c9d2fae826e8ed66bfc9a1c51d0de6a4 (patch) | |
tree | e7c6e673a7de17f59fe3af328ca9a2a3056ecad7 /keyboards/lily58 | |
parent | c3c61dc76ea07ece799d7fc5edf63b700dbd346c (diff) |
[Keyboard] Fix the layer state messages for actual values (#6116)
- display adjust when the bits are set correctly
Diffstat (limited to 'keyboards/lily58')
-rw-r--r-- | keyboards/lily58/lib/layer_state_reader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/lily58/lib/layer_state_reader.c b/keyboards/lily58/lib/layer_state_reader.c index 58f406bbc9..48674b0673 100644 --- a/keyboards/lily58/lib/layer_state_reader.c +++ b/keyboards/lily58/lib/layer_state_reader.c @@ -6,8 +6,8 @@ #define L_BASE 0 #define L_LOWER 2 #define L_RAISE 4 -#define L_ADJUST 65536 -#define L_ADJUST_TRI 65542 +#define L_ADJUST 8 +#define L_ADJUST_TRI 14 char layer_state_str[24]; |