From 8b5d32f556277b132916f797920a5b93917f7767 Mon Sep 17 00:00:00 2001 From: Alexander Levin Date: Wed, 24 Jun 2009 13:07:46 +0000 Subject: 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 --- apps/menus/time_menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/menus/time_menu.c') 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, -- cgit v1.2.3