Index: firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c =================================================================== --- firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c (revision 23436) +++ firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c (working copy) @@ -557,7 +557,7 @@ ptr = (fb_data*)&lcd_framebuffer[y][x]; - height = ymax - y - 1; /* fix height */ + height = ymax - y; /* fix height */ do { Index: firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c =================================================================== --- firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c (revision 23436) +++ firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c (working copy) @@ -405,7 +405,7 @@ ptr = &lcd_framebuffer[y][x]; - height = ymax - y - 1; /* fix height */ + height = ymax - y; /* fix height */ do { lcd_write_data(ptr, width);