From fb7c73aae446034e0e1938af69b9e3f4f4250207 Mon Sep 17 00:00:00 2001 From: Allanis Date: Thu, 25 Jul 2013 21:45:41 +0100 Subject: [PATCH] [Fix] printHeight was using wrong width. --- src/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map.c b/src/map.c index e54b286..5b03345 100644 --- a/src/map.c +++ b/src/map.c @@ -220,7 +220,7 @@ static void map_update(void) { } /* Get the services. */ - h = gl_printHeight(&gl_smallFont, 90, buf); + h = gl_printHeight(&gl_smallFont, 80, buf); y = -180 - (h - gl_smallFont.h); window_moveWidget(map_wid, "txtSServices", -20, y); y -= gl_smallFont.h+5;