diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-02-22 08:28:55 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-02-22 08:28:55 +0000 |
| commit | f1782602d05665cfa11ebcf2e88941d1c71216e8 (patch) | |
| tree | 77049c889b1c777b5e1c476bd1d6c9d0c17ae811 /apps | |
| parent | 21ac9d23d08af1c88e13de320706cb0708ec4a71 (diff) | |
| download | rockbox-f1782602d05665cfa11ebcf2e88941d1c71216e8.zip rockbox-f1782602d05665cfa11ebcf2e88941d1c71216e8.tar.gz rockbox-f1782602d05665cfa11ebcf2e88941d1c71216e8.tar.bz2 rockbox-f1782602d05665cfa11ebcf2e88941d1c71216e8.tar.xz | |
Print correctly the rockbox logo for Clipv2/Clip+, not only Clipv1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24852 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c index 7dfccd6..8c60e32 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -659,7 +659,8 @@ int show_logo( void ) snprintf(version, sizeof(version), "Ver. %s", appsversion); lcd_clear_display(); -#ifdef SANSA_CLIP /* display the logo in the blue area of the screen */ +#if defined(SANSA_CLIP) || defined(SANSA_CLIPV2) || defined(SANSA_CLIPPLUS) + /* display the logo in the blue area of the screen */ lcd_setfont(FONT_SYSFIXED); lcd_getstringsize((unsigned char *)"A", &font_w, &font_h); lcd_putsxy((LCD_WIDTH/2) - ((strlen(version)*font_w)/2), |