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
This commit is contained in:
Bertrik Sikken 2011-12-20 20:57:16 +00:00
parent cb972abc48
commit 67eefad6a5

View file

@ -77,23 +77,17 @@ void screen_helper_setfont(int font)
#endif #endif
} }
#ifdef HAVE_LCD_BITMAP
static int screen_helper_getuifont(void) static int screen_helper_getuifont(void)
{ {
#ifdef HAVE_LCD_BITMAP
return global_status.font_id[SCREEN_MAIN]; return global_status.font_id[SCREEN_MAIN];
#else
return -1;
#endif
} }
static void screen_helper_setuifont(int font) static void screen_helper_setuifont(int font)
{ {
#ifdef HAVE_LCD_BITMAP
global_status.font_id[SCREEN_MAIN] = font; global_status.font_id[SCREEN_MAIN] = font;
#else
(void)font;
#endif
} }
#endif
#if NB_SCREENS == 2 #if NB_SCREENS == 2
static int screen_helper_remote_getcharwidth(void) static int screen_helper_remote_getcharwidth(void)