summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/screen_access.c4
-rw-r--r--apps/screen_access.h4
2 files changed, 0 insertions, 8 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index 7ca6f8d310..31a946080c 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -248,8 +248,6 @@ struct screen screens[NB_SCREENS] =
248 .vline=&lcd_vline, 248 .vline=&lcd_vline,
249 .hline=&lcd_hline, 249 .hline=&lcd_hline,
250 .scroll_step=&lcd_scroll_step, 250 .scroll_step=&lcd_scroll_step,
251 .puts_style_xyoffset=&lcd_puts_style_xyoffset,
252 .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset,
253#endif /* HAVE_LCD_BITMAP */ 251#endif /* HAVE_LCD_BITMAP */
254 252
255#ifdef HAVE_LCD_CHARCELLS 253#ifdef HAVE_LCD_CHARCELLS
@@ -349,8 +347,6 @@ struct screen screens[NB_SCREENS] =
349 .vline=&lcd_remote_vline, 347 .vline=&lcd_remote_vline,
350 .hline=&lcd_remote_hline, 348 .hline=&lcd_remote_hline,
351 .scroll_step=&lcd_remote_scroll_step, 349 .scroll_step=&lcd_remote_scroll_step,
352 .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset,
353 .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset,
354#endif /* 1 */ 350#endif /* 1 */
355 351
356#if 0 /* no charcell remote LCDs so far */ 352#if 0 /* no charcell remote LCDs so far */
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 933a4dc692..c5684fc0c7 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -78,10 +78,6 @@ struct screen
78 void (*setuifont)(int newfont); 78 void (*setuifont)(int newfont);
79 79
80 void (*scroll_step)(int pixels); 80 void (*scroll_step)(int pixels);
81 void (*puts_style_xyoffset)(int x, int y, const unsigned char *str,
82 int style, int x_offset, int y_offset);
83 void (*puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string,
84 int style, int x_offset, int y_offset);
85 void (*mono_bitmap)(const unsigned char *src, 81 void (*mono_bitmap)(const unsigned char *src,
86 int x, int y, int width, int height); 82 int x, int y, int width, int height);
87 void (*mono_bitmap_part)(const unsigned char *src, int src_x, int src_y, 83 void (*mono_bitmap_part)(const unsigned char *src, int src_x, int src_y,