Use equivalent puts_scroll() call.

Change-Id: I09e5046f153a276fa6eb047e040b8f752e73d03c
This commit is contained in:
Thomas Martitz 2013-04-14 18:04:46 +02:00
parent fd6ab02912
commit fd9e256890
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}