diff --git a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c index e5f6453f43..f48861f4d7 100644 --- a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c +++ b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c @@ -557,7 +557,7 @@ void lcd_update_rect(int x, int y, int width, int height) ptr = (fb_data*)&lcd_framebuffer[y][x]; - height = ymax - y - 1; /* fix height */ + height = ymax - y; /* fix height */ do { diff --git a/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c b/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c index 3fe3037adc..735020cfad 100644 --- a/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c +++ b/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c @@ -405,7 +405,7 @@ void lcd_update_rect(int x, int y, int width, int height) ptr = &lcd_framebuffer[y][x]; - height = ymax - y - 1; /* fix height */ + height = ymax - y; /* fix height */ do { lcd_write_data(ptr, width);