mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
lcd-common: Remove unused function lcd_puts_style_offset().
Change-Id: I24da23d132f933fe647416dc58e8f50879715423
This commit is contained in:
parent
1e324aac36
commit
7cd07290e6
5 changed files with 1 additions and 15 deletions
|
@ -467,15 +467,9 @@ void LCDFN(puts_style_xyoffset)(int x, int y, const unsigned char *str,
|
|||
LCDFN(putsxyofs_style)(xpos, ypos+y_offset, str, style, h, x_offset);
|
||||
}
|
||||
|
||||
void LCDFN(puts_style_offset)(int x, int y, const unsigned char *str,
|
||||
int style, int x_offset)
|
||||
{
|
||||
LCDFN(puts_style_xyoffset)(x, y, str, style, x_offset, 0);
|
||||
}
|
||||
|
||||
void LCDFN(puts)(int x, int y, const unsigned char *str)
|
||||
{
|
||||
LCDFN(puts_style_offset)(x, y, str, STYLE_DEFAULT, 0);
|
||||
LCDFN(puts_style_xyoffset)(x, y, str, STYLE_DEFAULT, 0, 0);
|
||||
}
|
||||
|
||||
/* Formatting version of LCDFN(puts) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue