From a52896878a46d362526f0f7f296ca75ef3bf60cb Mon Sep 17 00:00:00 2001 From: Kjell Ericson Date: Mon, 21 Oct 2002 20:21:43 +0000 Subject: 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 --- firmware/drivers/lcd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware') 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); #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 */ -- cgit v1.2.3