summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/clock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/clock.c b/apps/plugins/clock.c
index eb2c898aa0..a01a6eb608 100644
--- a/apps/plugins/clock.c
+++ b/apps/plugins/clock.c
@@ -2315,7 +2315,7 @@ void draw_extras(int year, int day, int month, int hour, int minute, int second)
2315 2315
2316 struct tm* current_time = rb->get_time(); 2316 struct tm* current_time = rb->get_time();
2317 2317
2318 int fill = (LCDWIDTH/60) * second; 2318 int fill = LCDWIDTH * second/60;
2319 2319
2320 char moday[8]; 2320 char moday[8];
2321 char dateyr[6]; 2321 char dateyr[6];