summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/recorder/icons.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 0413792c53..2a9c00647b 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -163,9 +163,12 @@ void statusbar_icon_battery(int percent, bool charging)
163 if (fill > 100) 163 if (fill > 100)
164 fill = 100; 164 fill = 100;
165 165
166#ifdef SIMULATOR
167 if (global_settings.battery_type) {
168#else
166 /* show graphical animation when charging instead of numbers */ 169 /* show graphical animation when charging instead of numbers */
167 if ((global_settings.battery_type) && (charge_state != 1)) { 170 if ((global_settings.battery_type) && (charge_state != 1)) {
168 171#endif
169 /* Numeric display */ 172 /* Numeric display */
170 snprintf(buffer, sizeof(buffer), "%3d", percent); 173 snprintf(buffer, sizeof(buffer), "%3d", percent);
171 lcd_setfont(FONT_SYSFIXED); 174 lcd_setfont(FONT_SYSFIXED);