diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-04-14 18:13:12 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-01-07 14:13:48 +0100 |
| commit | 775ebe4ff6508d13712beb6bc18e546adb39f47d (patch) | |
| tree | ed627a0b18815e50ef6843fc3d9ad350503eb006 /firmware/export | |
| parent | 7cd07290e6fc21ab8b2b6d438d7a6b24b3708e35 (diff) | |
| download | rockbox-775ebe4ff6508d13712beb6bc18e546adb39f47d.zip rockbox-775ebe4ff6508d13712beb6bc18e546adb39f47d.tar.gz rockbox-775ebe4ff6508d13712beb6bc18e546adb39f47d.tar.bz2 rockbox-775ebe4ff6508d13712beb6bc18e546adb39f47d.tar.xz | |
lcd-common/scroll_engine: Remove unused functions lcd_puts_scroll_style().
Change-Id: Ia4f943b3738ab6e66b0e3f1507c629b36d7eba94
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/lcd-remote.h | 2 | ||||
| -rw-r--r-- | firmware/export/lcd.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h index 53ddf0f..4c0a894 100644 --- a/firmware/export/lcd-remote.h +++ b/firmware/export/lcd-remote.h @@ -179,8 +179,6 @@ extern void lcd_remote_puts_style_xyoffset(int x, int y, const unsigned char *st int style, int x_offset, int y_offset); extern void lcd_remote_putc(int x, int y, unsigned short ch); extern void lcd_remote_puts_scroll(int x, int y, const unsigned char *str); -extern void lcd_remote_puts_scroll_style(int x, int y, const unsigned char *str, - int style); extern void lcd_remote_puts_scroll_style_xyoffset(int x, int y, const unsigned char *string, int style, int x_offset, diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index b8c4f5c..9e6470d 100644 --- a/firmware/export/lcd.h +++ b/firmware/export/lcd.h @@ -208,8 +208,6 @@ extern void lcd_puts(int x, int y, const unsigned char *string); extern void lcd_putsf(int x, int y, const unsigned char *fmt, ...); extern void lcd_putc(int x, int y, unsigned long ucs); extern void lcd_puts_scroll(int x, int y, const unsigned char* string); -extern void lcd_puts_scroll_style(int x, int y, const unsigned char* string, - int style); extern void lcd_putsxy_scroll_func(int x, int y, const unsigned char *string, void (*scroll_func)(struct scrollinfo *), void *data, int x_offset); |