diff options
Diffstat (limited to 'firmware/target/arm/rk27xx/lcd-hifiman.c')
-rw-r--r-- | firmware/target/arm/rk27xx/lcd-hifiman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/rk27xx/lcd-hifiman.c b/firmware/target/arm/rk27xx/lcd-hifiman.c index 91e55894e5..21ca321d1f 100644 --- a/firmware/target/arm/rk27xx/lcd-hifiman.c +++ b/firmware/target/arm/rk27xx/lcd-hifiman.c @@ -162,7 +162,7 @@ void lcd_update_rect(int x, int y, int width, int height) for (px=x; px<pxmax; px++) for (py=y; py<pymax; py++) - lcd_data(lcd_framebuffer[py][px]); + lcd_data(FBADDR(px, py)); } /* Blit a YUV bitmap directly to the LCD */ |