diff options
Diffstat (limited to 'apps/screen_access.c')
| -rw-r--r-- | apps/screen_access.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c index b7dc90b..e47a815 100644 --- a/apps/screen_access.c +++ b/apps/screen_access.c @@ -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; |