summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-04-25 01:25:44 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-04-25 01:25:44 +0000
commitd6aa01bd90afbf41a2ecbc43813536d50faddcee (patch)
tree7497c08dcee8dbba2da07de266700fe32a9f1241 /apps/screens.c
parent272a505a610628d639da7dac58cd4d4c58ff59cb (diff)
downloadrockbox-d6aa01bd90afbf41a2ecbc43813536d50faddcee.tar.gz
rockbox-d6aa01bd90afbf41a2ecbc43813536d50faddcee.zip
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
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c4
1 files changed, 4 insertions, 0 deletions
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 */
562 va_end( ap ); 562 va_end( ap );
563 563
564 if(center) 564 if(center)
565 {
565 x = (LCD_WIDTH-widths[0])/2; 566 x = (LCD_WIDTH-widths[0])/2;
567 if(x < 0)
568 x = 0;
569 }
566 570
567#ifdef HAVE_LCD_BITMAP 571#ifdef HAVE_LCD_BITMAP
568 /* If we center the display and it wouldn't cover the full screen, 572 /* If we center the display and it wouldn't cover the full screen,