From d6aa01bd90afbf41a2ecbc43813536d50faddcee Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Fri, 25 Apr 2003 01:25:44 +0000 Subject: The splash() now doesn't try to output text at negative X positions. This fixes the playlist problems when using french language. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3607 a1c6a512-1295-4272-9138-f99709370657 --- apps/screens.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps') diff --git a/apps/screens.c b/apps/screens.c index 87a9869196..79f07f92c2 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -562,7 +562,11 @@ void splash(int ticks, /* how long */ va_end( ap ); if(center) + { x = (LCD_WIDTH-widths[0])/2; + if(x < 0) + x = 0; + } #ifdef HAVE_LCD_BITMAP /* If we center the display and it wouldn't cover the full screen, -- cgit v1.2.3