From 94fc46b730d72dc54c51b206b42053b8d663bd4b Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sat, 29 Oct 2011 22:36:47 +0000 Subject: Sansa clip zip: fix colours of icons, logos, album art * configure display for RGB (instead of BGR) colour coding * fix logo bitmap to correct size of 96x30 * fix pixel format to RGB565 swapped git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30859 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware/target') diff --git a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c index 0ae049b6ff..49a8014005 100644 --- a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c +++ b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c @@ -185,7 +185,7 @@ static void lcd_init_type1(void) lcd_write_dat(0x03); lcd_write_cmd(0x05); - lcd_write_dat(0x08); + lcd_write_dat(0x00); /* 0x08 results in BGR colour */ lcd_write_cmd(0x06); lcd_write_dat(0x00); @@ -403,8 +403,8 @@ void lcd_update_rect(int x, int y, int width, int height) ptr = &lcd_framebuffer[row][x]; for (col = x; col < x_end; col++) { pixel = *ptr++; - lcd_write_dat((pixel >> 8) & 0xFF); lcd_write_dat((pixel >> 0) & 0xFF); + lcd_write_dat((pixel >> 8) & 0xFF); } } } -- cgit v1.2.3