diff options
| author | Kjell Ericson <kjell@haxx.se> | 2002-10-21 20:21:43 +0000 |
|---|---|---|
| committer | Kjell Ericson <kjell@haxx.se> | 2002-10-21 20:21:43 +0000 |
| commit | a52896878a46d362526f0f7f296ca75ef3bf60cb (patch) | |
| tree | 15c19fd0face91ef53e1d18695e1a435d568a918 | |
| parent | ccfa84853aa2ee99af44007a00b2ce660158e5e6 (diff) | |
| download | rockbox-a52896878a46d362526f0f7f296ca75ef3bf60cb.zip rockbox-a52896878a46d362526f0f7f296ca75ef3bf60cb.tar.gz rockbox-a52896878a46d362526f0f7f296ca75ef3bf60cb.tar.bz2 rockbox-a52896878a46d362526f0f7f296ca75ef3bf60cb.tar.xz | |
Dubbled the size of player bitmap. The double height/width will be used to
make the icons in double resolution (and who wants to look at that old tiny
simulated player window anyway?)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2736 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/lcd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/lcd.h b/firmware/drivers/lcd.h index 29f4362..eba96fb 100644 --- a/firmware/drivers/lcd.h +++ b/firmware/drivers/lcd.h @@ -88,9 +88,9 @@ extern void lcd_double_height (bool on); #if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR) -#if !defined(HAVE_LCD_BITMAP) && defined(SIMULATOR) -#define LCD_WIDTH 16*6 /* Display width in pixels */ -#define LCD_HEIGHT 32 /* Display height in pixels */ +#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR) +#define LCD_WIDTH (2*11*6) /* Display width in pixels */ +#define LCD_HEIGHT (2*32) /* Display height in pixels */ #else #define LCD_WIDTH 112 /* Display width in pixels */ #define LCD_HEIGHT 64 /* Display height in pixels */ |