summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 44ec2b64d8..096b81411e 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -339,7 +339,7 @@ static void charging_display_info(bool animate)
339 bitpos = (phase + i/8) % 15; /* "bounce" effect */ 339 bitpos = (phase + i/8) % 15; /* "bounce" effect */
340 if (bitpos > 7) 340 if (bitpos > 7)
341 bitpos = 14 - bitpos; 341 bitpos = 14 - bitpos;
342 charging_logo[i] = 0x01 << bitpos; 342 charging_logo[i] = BIT_N(bitpos);
343 } 343 }
344 } 344 }
345 lcd_mono_bitmap(charging_logo, pox_x, pox_y + 8, 345 lcd_mono_bitmap(charging_logo, pox_x, pox_y + 8,