summaryrefslogtreecommitdiff
path: root/apps/plugins/resistor.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-04-03 16:33:23 +0200
committerThomas Martitz <kugel@rockbox.org>2013-12-14 23:11:30 +0100
commit1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8 (patch)
tree3ec44a4e6cfe4bfaab689e765ef3546d8dac730d /apps/plugins/resistor.c
parent47c8d3c14d8fdaf4749ef5e0380fb0c52140b5fb (diff)
scroll_engine: Rename scroll_stop* functions to be more consistent with the lcd api.
Change-Id: I8ada10b96bfb628cca0331689e8b936ae47c7e1c
Diffstat (limited to 'apps/plugins/resistor.c')
-rw-r--r--apps/plugins/resistor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/resistor.c b/apps/plugins/resistor.c
index 8dea817898..16374b3d18 100644
--- a/apps/plugins/resistor.c
+++ b/apps/plugins/resistor.c
@@ -771,7 +771,7 @@ static void led_resistance_calc(void)
}
}
display->set_viewport(&text_vp);
- rb->lcd_stop_scroll();
+ rb->lcd_scroll_stop();
display->set_viewport(&screen_vp);
rb->lcd_clear_display();
}
@@ -908,7 +908,7 @@ static void resistance_to_color(void)
}
}
display->set_viewport(&text_vp);
- rb->lcd_stop_scroll();
+ rb->lcd_scroll_stop();
display->set_viewport(&screen_vp);
rb->lcd_clear_display();
}
@@ -989,7 +989,7 @@ static void color_to_resistance(void)
}
}
display->set_viewport(&text_vp);
- rb->lcd_stop_scroll();
+ rb->lcd_scroll_stop();
display->set_viewport(&screen_vp);
rb->lcd_clear_display();
return;