mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
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
This commit is contained in:
parent
b73b067a90
commit
4eafd23f42
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue