SSD2119: updated scroll function name

Changed to new scheme: gdisp_lld_*.
ugfx_release_2.6
Mateusz Tomaszkiewicz 2013-03-01 22:54:52 +01:00
parent e5543face9
commit 2bc2dc6f68
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ void gdisp_lld_draw_pixel(coord_t x, coord_t y, color_t color) {
*
* @notapi
*/
void lld_gdisp_vertical_scroll(coord_t x, coord_t y, coord_t cx, coord_t cy, int lines, color_t bgcolor) {
void gdisp_lld_vertical_scroll(coord_t x, coord_t y, coord_t cx, coord_t cy, int lines, color_t bgcolor) {
static color_t buf[((GDISP_SCREEN_HEIGHT > GDISP_SCREEN_WIDTH ) ? GDISP_SCREEN_HEIGHT : GDISP_SCREEN_WIDTH)];
coord_t row0, row1;
unsigned i, gap, abslines, j;