summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525')
-rw-r--r--firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
index 2c80f89ff7..f69ad48793 100644
--- a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
+++ b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
@@ -448,7 +448,7 @@ void lcd_update(void)
448 448
449 lcd_write_cmd(R_WRITE_DATA_2_GRAM); 449 lcd_write_cmd(R_WRITE_DATA_2_GRAM);
450 450
451 dbop_write_data((fb_data*)lcd_framebuffer, LCD_WIDTH*LCD_HEIGHT); 451 dbop_write_data((fb_data*)FBADDR(0,0), LCD_WIDTH*LCD_HEIGHT);
452} 452}
453 453
454/* Update a fraction of the display. */ 454/* Update a fraction of the display. */
@@ -460,7 +460,7 @@ void lcd_update_rect(int x, int y, int width, int height)
460 return; 460 return;
461 461
462 /* nothing to draw? */ 462 /* nothing to draw? */
463 if ((width <= 0) || (height <= 0) || (x >= LCD_WIDTH) || 463 if ((width <= 0) || (height <= 0) || (x >= LCD_WIDTH) ||
464 (y >= LCD_HEIGHT) || (x + width <= 0) || (y + height <= 0)) 464 (y >= LCD_HEIGHT) || (x + width <= 0) || (y + height <= 0))
465 return; 465 return;
466 466