From 4c544b4e074d00c31ea79f5808ae465971ecd4b0 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Tue, 4 Apr 2006 01:40:11 +0000 Subject: Fix greyscale iPod sims for new LCD format. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9480 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/sdl/lcd-bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uisimulator/sdl/lcd-bitmap.c b/uisimulator/sdl/lcd-bitmap.c index 788a5f662d..da4050461c 100644 --- a/uisimulator/sdl/lcd-bitmap.c +++ b/uisimulator/sdl/lcd-bitmap.c @@ -41,7 +41,7 @@ static unsigned long get_lcd_pixel(int x, int y) return ((lcd_framebuffer[y/8][x] >> (y & 7)) & 1); #elif LCD_DEPTH == 2 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING - return ((lcd_framebuffer[y][x/4] >> (2 * (x & 3))) & 3); + return ((lcd_framebuffer[y][x/4] >> (2 * (~x & 3))) & 3); #else return ((lcd_framebuffer[y/4][x] >> (2 * (y & 3))) & 3); #endif -- cgit v1.2.3