Fix bugs in lcd drivers after b37e6bc

Change-Id: I9dc262b8453abab62e792beebe4f96415e58b380
This commit is contained in:
Andrew Ryabinin 2012-02-29 11:43:51 +04:00
parent e958aeeb76
commit fbb8c31e63
3 changed files with 3 additions and 3 deletions

View file

@ -191,7 +191,7 @@ void lcd_update_rect(int x, int y, int width, int height)
for (py=y; py<pymax; py++)
{
for (px=x; px<pxmax; px++)
LCD_DATA = lcd_pixel_transform(FBADDR(px,py));
LCD_DATA = lcd_pixel_transform(*FBADDR(px,py));
}
}