diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-10-16 21:26:23 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-10-16 21:26:23 +0000 |
| commit | 9c58356e88798bdfa4e883c6c5bf26b6eb04ad2b (patch) | |
| tree | 6d34d9111b56fe0857a3f0f9a01ad1f9657bc306 /apps | |
| parent | 91453fb59b4ee76a53aac8aaab40585ed319ce16 (diff) | |
| download | rockbox-9c58356e88798bdfa4e883c6c5bf26b6eb04ad2b.zip rockbox-9c58356e88798bdfa4e883c6c5bf26b6eb04ad2b.tar.gz rockbox-9c58356e88798bdfa4e883c6c5bf26b6eb04ad2b.tar.bz2 rockbox-9c58356e88798bdfa4e883c6c5bf26b6eb04ad2b.tar.xz | |
Make two local functions static in skin_tokens.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28290 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/gui/skin_engine/skin_tokens.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c index 78d141e..0af2e9d 100644 --- a/apps/gui/skin_engine/skin_tokens.c +++ b/apps/gui/skin_engine/skin_tokens.c @@ -555,7 +555,7 @@ static struct mp3entry* get_mp3entry_from_offset(int offset, char **filename) } #ifdef HAVE_LCD_CHARCELLS -void format_player_progress(struct gui_wps *gwps) +static void format_player_progress(struct gui_wps *gwps) { struct wps_state *state = skin_get_global_state(); struct screen *display = gwps->display; @@ -591,7 +591,7 @@ void format_player_progress(struct gui_wps *gwps) display->define_pattern(gwps->data->wps_progress_pat[0], progress_pattern); } -void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) +static void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) { static const unsigned char numbers[10][4] = { {0x0e, 0x0a, 0x0a, 0x0e}, /* 0 */ @@ -603,7 +603,7 @@ void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) {0x0e, 0x08, 0x0e, 0x0e}, /* 6 */ {0x0e, 0x02, 0x04, 0x08}, /* 7 */ {0x0e, 0x0e, 0x0a, 0x0e}, /* 8 */ - {0x0e, 0x0e, 0x02, 0x0e}, /* 9 */ + {0x0e, 0x0e, 0x02, 0x0e} /* 9 */ }; struct wps_state *state = skin_get_global_state(); |