cut off the #if 0

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-03-26 13:15:58 +00:00
parent 9f9a5f1af6
commit a0b47e16eb
1 changed files with 0 additions and 32 deletions

View File

@ -79,38 +79,6 @@ void lcd_update (void)
}
}
#if 0
/*
* Display a string at current position
*/
void lcd_string (const char *text, BOOL invert)
{
int ch;
while ((ch = *text++) != '\0') {
if (lcd_y > DISP_Y-CHAR_Y) {
/* Scroll (8 pixels) */
memcpy (display[0], display[1], DISP_X*(DISP_Y/8-1));
lcd_y -= 8;
}
if (ch == '\n')
lcd_x = DISP_X;
else {
lcd_char (ch, invert);
lcd_x += CHAR_X;
}
if (lcd_x > DISP_X-CHAR_X) {
/* Wrap to next line */
lcd_x = 0;
lcd_y += CHAR_Y;
}
}
}
#endif
/*
* Write a byte to LCD controller.
* command is TRUE if value is a command byte.