diff options
| author | Kjell Ericson <kjell@haxx.se> | 2004-10-19 16:17:35 +0000 |
|---|---|---|
| committer | Kjell Ericson <kjell@haxx.se> | 2004-10-19 16:17:35 +0000 |
| commit | 6c2fb55b7d9435f76ba95a66424e34cbb2caf5a4 (patch) | |
| tree | 850f6cdee85ab1b86e499be85ffecc1e76d5ccb1 /apps | |
| parent | 77acab2089df1b9d5357fd5866b511104ad45ab2 (diff) | |
| download | rockbox-6c2fb55b7d9435f76ba95a66424e34cbb2caf5a4.zip rockbox-6c2fb55b7d9435f76ba95a66424e34cbb2caf5a4.tar.gz rockbox-6c2fb55b7d9435f76ba95a66424e34cbb2caf5a4.tar.bz2 rockbox-6c2fb55b7d9435f76ba95a66424e34cbb2caf5a4.tar.xz | |
The display is forced in to two row modes for player before showing the splash text
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5311 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/screens.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/screens.c b/apps/screens.c index 9a9ebff..2db3607 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -42,6 +42,7 @@ #include "misc.h" #include "id3.h" #include "screens.h" +#include "debug.h" #ifdef HAVE_LCD_BITMAP #define BMPHEIGHT_usb_logo 32 @@ -700,6 +701,9 @@ void splash(int ticks, /* how long the splash is displayed */ int maxw=0; #endif +#ifdef HAVE_LCD_CHARCELLS + lcd_double_height (false); +#endif va_start( ap, fmt ); vsnprintf( splash_buf, sizeof(splash_buf), fmt, ap ); |