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
This commit is contained in:
Bertrik Sikken 2011-10-31 20:17:04 +00:00
parent d11e5201dc
commit 58543296c9
3 changed files with 3 additions and 3 deletions

View file

@ -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);
}
}