summaryrefslogtreecommitdiffstats
path: root/apps/screen_access.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-12-20 20:35:28 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-12-20 20:35:28 +0000
commitcb972abc488fa4c06d16ba9ebeb030a0b8d45ed2 (patch)
treeae2abf8ed076d240cbb07bd8164d5ab7cca7bebf /apps/screen_access.c
parent0cb0b502367380b73506a251f1d4841d340c3325 (diff)
downloadrockbox-cb972abc488fa4c06d16ba9ebeb030a0b8d45ed2.tar.gz
rockbox-cb972abc488fa4c06d16ba9ebeb030a0b8d45ed2.zip
Another round of making local functions static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31384 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.c')
-rw-r--r--apps/screen_access.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index b7dc90b5bd..e47a815b82 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;