1
0
Fork 0
forked from len0rd/rockbox

Added lcd_double_height()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@715 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-05-26 20:54:52 +00:00
parent 28c4b4c18c
commit ff351c1fcc
2 changed files with 6 additions and 0 deletions

View file

@ -349,6 +349,11 @@ void lcd_define_pattern (int which,char *pattern,int length)
lcd_write(false,pattern[i]);
}
void lcd_double_height(bool on)
{
lcd_write(true,on?9:8);
}
#endif
#endif

View file

@ -68,6 +68,7 @@ extern void lcd_puts(int x, int y, char *string);
# define LCD_PARAM_SYMBOL 0xF0
extern void lcd_define_pattern (int which,char *pattern,int length);
extern void lcd_double_height (bool on);
#endif
#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)