1
0
Fork 0
forked from len0rd/rockbox

LCD scrolling routines: Fix the screen scrolling boundary with Vertical Strides.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23005 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Karl Kurbjun 2009-10-08 03:56:37 +00:00
parent 6317bef3ce
commit 573d3f2845

View file

@ -81,7 +81,7 @@ void xlcd_scroll_up(int count)
length = LCD_HEIGHT - count;
width = LCD_WIDTH;
width = LCD_WIDTH-1;
data = rb->lcd_framebuffer;
do {
@ -107,7 +107,7 @@ void xlcd_scroll_down(int count)
length = LCD_HEIGHT - count;
width = LCD_WIDTH;
width = LCD_WIDTH-1;
data = rb->lcd_framebuffer;
do {