forked from len0rd/rockbox
Some TAB characters slipped in...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4621 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2d446fef06
commit
6dc88dca66
2 changed files with 15 additions and 15 deletions
|
|
@ -476,13 +476,13 @@ void lcd_bitmap (unsigned char *src, int x, int y, int nx, int ny,
|
|||
|
||||
if (!shift && clear) /* shortcut for byte aligned match with clear */
|
||||
{
|
||||
while (ny >= 8) /* all full rows */
|
||||
{
|
||||
memcpy(dst, src, nx);
|
||||
src += stride;
|
||||
dst += LCD_WIDTH;
|
||||
while (ny >= 8) /* all full rows */
|
||||
{
|
||||
memcpy(dst, src, nx);
|
||||
src += stride;
|
||||
dst += LCD_WIDTH;
|
||||
ny -= 8;
|
||||
}
|
||||
}
|
||||
if (ny == 0) /* nothing left to do? */
|
||||
return;
|
||||
/* last partial row to do by default routine */
|
||||
|
|
@ -506,8 +506,8 @@ void lcd_bitmap (unsigned char *src, int x, int y, int nx, int ny,
|
|||
/* Loop for each column */
|
||||
for (x = 0; x < nx; x++)
|
||||
{
|
||||
src_col = src++;
|
||||
dst_col = dst++;
|
||||
src_col = src++;
|
||||
dst_col = dst++;
|
||||
data = 0;
|
||||
y = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue