diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2007-08-04 14:50:28 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2007-08-04 14:50:28 +0000 |
| commit | 14d276121af7aa458553f49500c802c87f23bd69 (patch) | |
| tree | 41a86c0bce9379f96c23900fc91c82d037766bde /apps/plugins/clock/clock_draw_analog.c | |
| parent | 75e2f19de334bcbfa9d15062674d8efcb0eb2a64 (diff) | |
| download | rockbox-14d276121af7aa458553f49500c802c87f23bd69.zip rockbox-14d276121af7aa458553f49500c802c87f23bd69.tar.gz rockbox-14d276121af7aa458553f49500c802c87f23bd69.tar.bz2 rockbox-14d276121af7aa458553f49500c802c87f23bd69.tar.xz | |
Clock plugin : centered the binary plugin, moved the AM/PM mark to the right on digital display, reduced the thickness of the pseudo antialiasing for analog clock
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14181 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/clock/clock_draw_analog.c')
| -rw-r--r-- | apps/plugins/clock/clock_draw_analog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/clock/clock_draw_analog.c b/apps/plugins/clock/clock_draw_analog.c index 3cfb236..04d6c5a 100644 --- a/apps/plugins/clock/clock_draw_analog.c +++ b/apps/plugins/clock/clock_draw_analog.c @@ -193,7 +193,7 @@ void draw_hour(struct screen* display, struct time* time, if(display->is_color){ display->set_foreground(LCD_RGBPACK(100,110,125)); draw_hands(display, hour, time->minute, time->second, - 2, skin, show_seconds); + 1, skin, show_seconds); display->set_foreground(LCD_BLACK); } #endif |