From 58543296c967096e3814a7abf65c84296d99d499 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Mon, 31 Oct 2011 20:17:04 +0000 Subject: Sansa clip zip: attempt to fix the pixel format swappedness for good git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30873 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 cc30e19fcf..53d80cbbe7 100644 --- a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c +++ b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c @@ -372,8 +372,8 @@ void lcd_write_data(const fb_data *data, int count) while (count--) { pixel = *data++; - lcd_write_dat((pixel >> 0) & 0xFF); lcd_write_dat((pixel >> 8) & 0xFF); + lcd_write_dat((pixel >> 0) & 0xFF); } } -- cgit v1.2.3