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:
parent
0cb0b50236
commit
cb972abc48
5 changed files with 7 additions and 9 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue