summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-04-13 18:20:42 +0200
committerThomas Martitz <kugel@rockbox.org>2014-01-07 14:13:48 +0100
commit7cd07290e6fc21ab8b2b6d438d7a6b24b3708e35 (patch)
treea57c8639c633561ed841c7a508e7dcb4bc60dd8e /apps
parent1e324aac36c123340d8d33338042402164581860 (diff)
downloadrockbox-7cd07290e6fc21ab8b2b6d438d7a6b24b3708e35.tar.gz
rockbox-7cd07290e6fc21ab8b2b6d438d7a6b24b3708e35.zip
lcd-common: Remove unused function lcd_puts_style_offset().
Change-Id: I24da23d132f933fe647416dc58e8f50879715423
Diffstat (limited to 'apps')
-rw-r--r--apps/screen_access.c2
-rw-r--r--apps/screen_access.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index c8f47ed0f6..452e5e9501 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -248,7 +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_offset=&lcd_puts_style_offset,
252 .puts_style_xyoffset=&lcd_puts_style_xyoffset, 251 .puts_style_xyoffset=&lcd_puts_style_xyoffset,
253 .puts_scroll_style=&lcd_puts_scroll_style, 252 .puts_scroll_style=&lcd_puts_scroll_style,
254 .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset, 253 .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset,
@@ -351,7 +350,6 @@ struct screen screens[NB_SCREENS] =
351 .vline=&lcd_remote_vline, 350 .vline=&lcd_remote_vline,
352 .hline=&lcd_remote_hline, 351 .hline=&lcd_remote_hline,
353 .scroll_step=&lcd_remote_scroll_step, 352 .scroll_step=&lcd_remote_scroll_step,
354 .puts_style_offset=&lcd_remote_puts_style_offset,
355 .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset, 353 .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset,
356 .puts_scroll_style=&lcd_remote_puts_scroll_style, 354 .puts_scroll_style=&lcd_remote_puts_scroll_style,
357 .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset, 355 .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset,
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 1d120f7bb0..4f1faac187 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -78,8 +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_offset)(int x, int y, const unsigned char *str,
82 int style, int x_offset);
83 void (*puts_style_xyoffset)(int x, int y, const unsigned char *str, 81 void (*puts_style_xyoffset)(int x, int y, const unsigned char *str,
84 int style, int x_offset, int y_offset); 82 int style, int x_offset, int y_offset);
85 void (*puts_scroll_style)(int x, int y, const unsigned char *string, 83 void (*puts_scroll_style)(int x, int y, const unsigned char *string,