summaryrefslogtreecommitdiff
path: root/keyboards/splitkb/aurora/lily58/lily58.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/splitkb/aurora/lily58/lily58.c')
-rw-r--r--keyboards/splitkb/aurora/lily58/lily58.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/keyboards/splitkb/aurora/lily58/lily58.c b/keyboards/splitkb/aurora/lily58/lily58.c
index 828ac84f47..83e4ecbe08 100644
--- a/keyboards/splitkb/aurora/lily58/lily58.c
+++ b/keyboards/splitkb/aurora/lily58/lily58.c
@@ -212,14 +212,19 @@ void render_layer_state(void) {
0x20, 0x9d, 0x9e, 0x9f, 0x20,
0x20, 0xbd, 0xbe, 0xbf, 0x20,
0x20, 0xdd, 0xde, 0xdf, 0x20, 0};
- if(layer_state_is(_LOWER)) {
- oled_write_P(lower_layer, false);
- } else if(layer_state_is(_RAISE)) {
- oled_write_P(raise_layer, false);
- } else if(layer_state_is(_DEFAULT)) {
- oled_write_P(default_layer, false);
- } else {
- oled_write_P(adjust_layer, false);
+
+ switch (get_highest_layer(layer_state | default_layer_state)) {
+ case _LOWER:
+ oled_write_P(lower_layer, false);
+ break;
+ case _RAISE:
+ oled_write_P(raise_layer, false);
+ break;
+ case _ADJUST:
+ oled_write_P(adjust_layer, false);
+ break;
+ default:
+ oled_write_P(default_layer, false);
}
}