1
0
Fork 0
forked from len0rd/rockbox

Another round of making local functions static

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31384 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-12-20 20:35:28 +00:00
parent 0cb0b50236
commit cb972abc48
5 changed files with 7 additions and 9 deletions

View file

@ -77,7 +77,7 @@ void screen_helper_setfont(int font)
#endif
}
int screen_helper_getuifont(void)
static int screen_helper_getuifont(void)
{
#ifdef HAVE_LCD_BITMAP
return global_status.font_id[SCREEN_MAIN];
@ -86,7 +86,7 @@ int screen_helper_getuifont(void)
#endif
}
void screen_helper_setuifont(int font)
static void screen_helper_setuifont(int font)
{
#ifdef HAVE_LCD_BITMAP
global_status.font_id[SCREEN_MAIN] = font;