lcd-common: Remove unused function lcd_puts_offset().

Change-Id: I39749bf3db915e5a8ddb6e6f25eb201ea0aaf981
This commit is contained in:
Thomas Martitz 2013-04-13 18:17:16 +02:00
parent a422604435
commit 8f64625888
6 changed files with 17 additions and 27 deletions

View file

@ -494,11 +494,6 @@ void LCDFN(puts_style)(int x, int y, const unsigned char *str, int style)
LCDFN(puts_style_offset)(x, y, str, style, 0);
}
void LCDFN(puts_offset)(int x, int y, const unsigned char *str, int offset)
{
LCDFN(puts_style_offset)(x, y, str, STYLE_DEFAULT, offset);
}
/*** scrolling ***/
static struct scrollinfo* find_scrolling_line(int x, int y)