1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Linus Nielsen Feltzing 2003-04-25 01:25:44 +00:00
parent 272a505a61
commit d6aa01bd90

View file

@ -562,7 +562,11 @@ void splash(int ticks, /* how long */
va_end( ap ); va_end( ap );
if(center) if(center)
{
x = (LCD_WIDTH-widths[0])/2; x = (LCD_WIDTH-widths[0])/2;
if(x < 0)
x = 0;
}
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
/* If we center the display and it wouldn't cover the full screen, /* If we center the display and it wouldn't cover the full screen,