From 4eafd23f42272bd55394842e8c691cde0aac3d39 Mon Sep 17 00:00:00 2001 From: Michael Chicoine Date: Sat, 31 Oct 2009 23:15:33 +0000 Subject: FS#10744 - Fuze: Last line of screen's pixels doesn't change when switching themes and using plugins git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23452 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c | 2 +- firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware') 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); -- cgit v1.2.3