summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd.h
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2002-10-21 20:21:43 +0000
committerKjell Ericson <kjell@haxx.se>2002-10-21 20:21:43 +0000
commita52896878a46d362526f0f7f296ca75ef3bf60cb (patch)
tree15c19fd0face91ef53e1d18695e1a435d568a918 /firmware/drivers/lcd.h
parentccfa84853aa2ee99af44007a00b2ce660158e5e6 (diff)
downloadrockbox-a52896878a46d362526f0f7f296ca75ef3bf60cb.tar.gz
rockbox-a52896878a46d362526f0f7f296ca75ef3bf60cb.zip
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
Diffstat (limited to 'firmware/drivers/lcd.h')
-rw-r--r--firmware/drivers/lcd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/lcd.h b/firmware/drivers/lcd.h
index 29f4362dcf..eba96fbcbd 100644
--- a/firmware/drivers/lcd.h
+++ b/firmware/drivers/lcd.h
@@ -88,9 +88,9 @@ extern void lcd_double_height (bool on);
88 88
89#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR) 89#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
90 90
91#if !defined(HAVE_LCD_BITMAP) && defined(SIMULATOR) 91#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR)
92#define LCD_WIDTH 16*6 /* Display width in pixels */ 92#define LCD_WIDTH (2*11*6) /* Display width in pixels */
93#define LCD_HEIGHT 32 /* Display height in pixels */ 93#define LCD_HEIGHT (2*32) /* Display height in pixels */
94#else 94#else
95#define LCD_WIDTH 112 /* Display width in pixels */ 95#define LCD_WIDTH 112 /* Display width in pixels */
96#define LCD_HEIGHT 64 /* Display height in pixels */ 96#define LCD_HEIGHT 64 /* Display height in pixels */