From fe6f4f200f459630bcfb5760e21d02bb7e43be02 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Thu, 10 Aug 2006 16:32:14 +0000 Subject: Make the grey shades on greyscale iPods a little darker, and the dark grey on H1x0 a little brighter. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10511 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/lcd-ipod.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware/drivers/lcd-ipod.c') diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c index 875bf8ffa0..7f881c529d 100644 --- a/firmware/drivers/lcd-ipod.c +++ b/firmware/drivers/lcd-ipod.c @@ -130,7 +130,7 @@ static void lcd_cmd_and_data(unsigned cmd, unsigned data) /* LCD init */ void lcd_init_device(void) { - lcd_cmd_and_data(R_DISPLAY_CONTROL, 0x0015); + lcd_cmd_and_data(R_DISPLAY_CONTROL, 0x0009); lcd_set_flip(false); lcd_cmd_and_data(R_ENTRY_MODE, 0x0000); @@ -167,9 +167,9 @@ void lcd_set_contrast(int val) void lcd_set_invert_display(bool yesno) { if (yesno) - lcd_cmd_and_data(R_DISPLAY_CONTROL, 0x0017); + lcd_cmd_and_data(R_DISPLAY_CONTROL, 0x0023); else - lcd_cmd_and_data(R_DISPLAY_CONTROL, 0x0015); + lcd_cmd_and_data(R_DISPLAY_CONTROL, 0x0009); } /* turn the display upside down (call lcd_update() afterwards) */ -- cgit v1.2.3