summaryrefslogtreecommitdiffstats
path: root/firmware/drivers/lcd-bitmap-common.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-04-14 18:13:12 +0200
committerThomas Martitz <kugel@rockbox.org>2014-01-07 14:13:48 +0100
commit775ebe4ff6508d13712beb6bc18e546adb39f47d (patch)
treeed627a0b18815e50ef6843fc3d9ad350503eb006 /firmware/drivers/lcd-bitmap-common.c
parent7cd07290e6fc21ab8b2b6d438d7a6b24b3708e35 (diff)
downloadrockbox-775ebe4ff6508d13712beb6bc18e546adb39f47d.tar.gz
rockbox-775ebe4ff6508d13712beb6bc18e546adb39f47d.zip
lcd-common/scroll_engine: Remove unused functions lcd_puts_scroll_style().
Change-Id: Ia4f943b3738ab6e66b0e3f1507c629b36d7eba94
Diffstat (limited to 'firmware/drivers/lcd-bitmap-common.c')
-rw-r--r--firmware/drivers/lcd-bitmap-common.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c
index a95efbc1d8..14c63ec471 100644
--- a/firmware/drivers/lcd-bitmap-common.c
+++ b/firmware/drivers/lcd-bitmap-common.c
@@ -602,13 +602,8 @@ void LCDFN(putsxy_scroll_func)(int x, int y, const unsigned char *string,
void LCDFN(puts_scroll)(int x, int y, const unsigned char *string)
{
- LCDFN(puts_scroll_style)(x, y, string, STYLE_DEFAULT);
-}
-
-void LCDFN(puts_scroll_style)(int x, int y, const unsigned char *string,
- int style)
-{
- LCDFN(puts_scroll_style_xyoffset)(x, y, string, style, 0, 0);
+ LCDFN(puts_scroll_worker)(x, y, string, STYLE_DEFAULT, 0, 0,
+ true, LCDFN(scroll_fn), NULL);
}
#if !defined(HAVE_LCD_COLOR) || !defined(MAIN_LCD)