summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2009-06-24 13:07:46 +0000
committerAlexander Levin <al.le@rockbox.org>2009-06-24 13:07:46 +0000
commit8b5d32f556277b132916f797920a5b93917f7767 (patch)
tree956f55f7b0c52b485d6600eacef2718b2bc3f438 /apps
parent388e31cb965d776483fdb6ea6b419f857a7ef5c2 (diff)
downloadrockbox-8b5d32f556277b132916f797920a5b93917f7767.tar.gz
rockbox-8b5d32f556277b132916f797920a5b93917f7767.zip
Correct the slight misalignment of the clock (FS#10334 by Andre Lupa)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21489 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/menus/time_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menus/time_menu.c b/apps/menus/time_menu.c
index 1b70570ae4..6d5370473e 100644
--- a/apps/menus/time_menu.c
+++ b/apps/menus/time_menu.c
@@ -176,13 +176,13 @@ static void draw_timedate(struct viewport *vp, struct screen *display)
if (valid_time(tm))
{
- snprintf(time, 16, "%02d:%02d:%02d %s",
+ snprintf(time, 16, "%02d:%02d:%02d%s",
global_settings.timeformat == 0 ? tm->tm_hour :
((tm->tm_hour + 11) % 12) + 1,
tm->tm_min,
tm->tm_sec,
global_settings.timeformat == 0 ? "" :
- tm->tm_hour>11 ? "P" : "A");
+ tm->tm_hour>11 ? " P" : " A");
snprintf(date, 16, "%s %d %d",
str(LANG_MONTH_JANUARY + tm->tm_mon),
tm->tm_mday,