summaryrefslogtreecommitdiff
path: root/uisimulator/sdl/lcd-bitmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/sdl/lcd-bitmap.c')
-rw-r--r--uisimulator/sdl/lcd-bitmap.c2
1 files changed, 1 insertions, 1 deletions
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)
41 return ((lcd_framebuffer[y/8][x] >> (y & 7)) & 1); 41 return ((lcd_framebuffer[y/8][x] >> (y & 7)) & 1);
42#elif LCD_DEPTH == 2 42#elif LCD_DEPTH == 2
43#if LCD_PIXELFORMAT == HORIZONTAL_PACKING 43#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
44 return ((lcd_framebuffer[y][x/4] >> (2 * (x & 3))) & 3); 44 return ((lcd_framebuffer[y][x/4] >> (2 * (~x & 3))) & 3);
45#else 45#else
46 return ((lcd_framebuffer[y/4][x] >> (2 * (y & 3))) & 3); 46 return ((lcd_framebuffer[y/4][x] >> (2 * (y & 3))) & 3);
47#endif 47#endif