diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-04-14 18:04:46 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2013-04-14 18:04:46 +0200 |
| commit | fd9e2568908f91b5bcf7378dc28f6ec070d6027a (patch) | |
| tree | c55e2aa3f70d9d5ea00681d59bf810e18a898373 /apps/plugins/lib | |
| parent | fd6ab02912d58d0a782c68d4622f0a27eb98bb56 (diff) | |
| download | rockbox-fd9e2568908f91b5bcf7378dc28f6ec070d6027a.zip rockbox-fd9e2568908f91b5bcf7378dc28f6ec070d6027a.tar.gz rockbox-fd9e2568908f91b5bcf7378dc28f6ec070d6027a.tar.bz2 rockbox-fd9e2568908f91b5bcf7378dc28f6ec070d6027a.tar.xz | |
Use equivalent puts_scroll() call.
Change-Id: I09e5046f153a276fa6eb047e040b8f752e73d03c
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/pluginlib_touchscreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/pluginlib_touchscreen.c b/apps/plugins/lib/pluginlib_touchscreen.c index 8c746e1..0957507 100644 --- a/apps/plugins/lib/pluginlib_touchscreen.c +++ b/apps/plugins/lib/pluginlib_touchscreen.c @@ -147,7 +147,7 @@ void touchbutton_draw(struct touchbutton *data, int num_buttons) { /* If the width offset was 0, use a scrolling puts, else center and * print the title. */ - lcd->puts_scroll_style(0, 0, data[i].title, STYLE_DEFAULT); + lcd->puts_scroll(0, 0, data[i].title); /* Draw bounding box around the button location. */ lcd->draw_border_viewport(); } |