summaryrefslogtreecommitdiff
path: root/apps/screen_access.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-12-20 20:57:16 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-12-20 20:57:16 +0000
commit67eefad6a50997d9262503e41204720a2d8c39b9 (patch)
treefd0c168e44a9dfebbce01c91fc60cd1924495d32 /apps/screen_access.c
parentcb972abc488fa4c06d16ba9ebeb030a0b8d45ed2 (diff)
downloadrockbox-67eefad6a50997d9262503e41204720a2d8c39b9.tar.gz
rockbox-67eefad6a50997d9262503e41204720a2d8c39b9.zip
Disable unused functions for archos-player in apps/screen_access.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31385 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.c')
-rw-r--r--apps/screen_access.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index e47a815b82..834ece3cb8 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -77,23 +77,17 @@ void screen_helper_setfont(int font)
77#endif 77#endif
78} 78}
79 79
80#ifdef HAVE_LCD_BITMAP
80static int screen_helper_getuifont(void) 81static int screen_helper_getuifont(void)
81{ 82{
82#ifdef HAVE_LCD_BITMAP
83 return global_status.font_id[SCREEN_MAIN]; 83 return global_status.font_id[SCREEN_MAIN];
84#else
85 return -1;
86#endif
87} 84}
88 85
89static void screen_helper_setuifont(int font) 86static void screen_helper_setuifont(int font)
90{ 87{
91#ifdef HAVE_LCD_BITMAP
92 global_status.font_id[SCREEN_MAIN] = font; 88 global_status.font_id[SCREEN_MAIN] = font;
93#else
94 (void)font;
95#endif
96} 89}
90#endif
97 91
98#if NB_SCREENS == 2 92#if NB_SCREENS == 2
99static int screen_helper_remote_getcharwidth(void) 93static int screen_helper_remote_getcharwidth(void)