diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/screen_access.c | 4 | ||||
| -rw-r--r-- | apps/screen_access.h | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c index 81bb6ba..7ebc45b 100644 --- a/apps/screen_access.c +++ b/apps/screen_access.c @@ -251,7 +251,6 @@ struct screen screens[NB_SCREENS] = .puts_style_offset=&lcd_puts_style_offset, .puts_style_xyoffset=&lcd_puts_style_xyoffset, .puts_scroll_style=&lcd_puts_scroll_style, - .puts_scroll_style_offset=&lcd_puts_scroll_style_offset, .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset, #endif /* HAVE_LCD_BITMAP */ @@ -269,7 +268,6 @@ struct screen screens[NB_SCREENS] = .putsf=&lcd_putsf, .puts_offset=&lcd_puts_offset, .puts_scroll=&lcd_puts_scroll, - .puts_scroll_offset=&lcd_puts_scroll_offset, .putsxy_scroll_func=&lcd_putsxy_scroll_func, .scroll_speed=&lcd_scroll_speed, .scroll_delay=&lcd_scroll_delay, @@ -357,7 +355,6 @@ struct screen screens[NB_SCREENS] = .puts_style_offset=&lcd_remote_puts_style_offset, .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset, .puts_scroll_style=&lcd_remote_puts_scroll_style, - .puts_scroll_style_offset=&lcd_remote_puts_scroll_style_offset, .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset, #endif /* 1 */ @@ -373,7 +370,6 @@ struct screen screens[NB_SCREENS] = .putsf=&lcd_remote_putsf, .puts_offset=&lcd_remote_puts_offset, .puts_scroll=&lcd_remote_puts_scroll, - .puts_scroll_offset=&lcd_remote_puts_scroll_offset, .putsxy_scroll_func=&lcd_remote_putsxy_scroll_func, .scroll_speed=&lcd_remote_scroll_speed, .scroll_delay=&lcd_remote_scroll_delay, diff --git a/apps/screen_access.h b/apps/screen_access.h index 7bc9c35..c21d9cd 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -84,8 +84,6 @@ struct screen int style, int x_offset, int y_offset); void (*puts_scroll_style)(int x, int y, const unsigned char *string, int style); - void (*puts_scroll_style_offset)(int x, int y, const unsigned char *string, - int style, int x_offset); void (*puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string, int style, int x_offset, int y_offset); void (*mono_bitmap)(const unsigned char *src, @@ -143,8 +141,6 @@ struct screen void (*putsf)(int x, int y, const unsigned char *str, ...); void (*puts_offset)(int x, int y, const unsigned char *str, int offset); void (*puts_scroll)(int x, int y, const unsigned char *string); - void (*puts_scroll_offset)(int x, int y, const unsigned char *string, - int x_offset); void (*putsxy_scroll_func)(int x, int y, const unsigned char *string, void (*scroll_func)(struct scrollinfo *), void *data, int x_offset); |