iPod Classic: Enable RGB LCD update assembler code

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29466 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sparmann 2011-02-28 18:30:19 +00:00
parent 0269b27eb8
commit 3bcfd5c106

View file

@ -206,10 +206,6 @@ void lcd_update_rect(int x, int y, int width, int height)
s5l_lcd_write_cmd(R_MEMORY_WRITE); s5l_lcd_write_cmd(R_MEMORY_WRITE);
} }
for (y = y0; y <= y1; y++)
for (x = x0; x <= x1; x++)
s5l_lcd_write_data(lcd_framebuffer[y][x]);
return;
/* Copy display bitmap to hardware */ /* Copy display bitmap to hardware */
p = &lcd_framebuffer[y0][x0]; p = &lcd_framebuffer[y0][x0];