summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2006-11-10 06:36:36 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2006-11-10 06:36:36 +0000
commitcbce47a623998ed2161c7567e9c28b5b48685f65 (patch)
tree26b419e1bd064d38fcaebfcdef54bb3a959a846c
parent06d8ee64c1f78c126806d78b4e49c039f65b4269 (diff)
downloadrockbox-cbce47a623998ed2161c7567e9c28b5b48685f65.tar.gz
rockbox-cbce47a623998ed2161c7567e9c28b5b48685f65.zip
Fix the second inverse
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11492 a1c6a512-1295-4272-9138-f99709370657
-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];