summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/skin_tokens.c6
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 78d141e743..0af2e9dd6b 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)
555} 555}
556 556
557#ifdef HAVE_LCD_CHARCELLS 557#ifdef HAVE_LCD_CHARCELLS
558void format_player_progress(struct gui_wps *gwps) 558static void format_player_progress(struct gui_wps *gwps)
559{ 559{
560 struct wps_state *state = skin_get_global_state(); 560 struct wps_state *state = skin_get_global_state();
561 struct screen *display = gwps->display; 561 struct screen *display = gwps->display;
@@ -591,7 +591,7 @@ void format_player_progress(struct gui_wps *gwps)
591 display->define_pattern(gwps->data->wps_progress_pat[0], progress_pattern); 591 display->define_pattern(gwps->data->wps_progress_pat[0], progress_pattern);
592} 592}
593 593
594void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) 594static void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size)
595{ 595{
596 static const unsigned char numbers[10][4] = { 596 static const unsigned char numbers[10][4] = {
597 {0x0e, 0x0a, 0x0a, 0x0e}, /* 0 */ 597 {0x0e, 0x0a, 0x0a, 0x0e}, /* 0 */
@@ -603,7 +603,7 @@ void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size)
603 {0x0e, 0x08, 0x0e, 0x0e}, /* 6 */ 603 {0x0e, 0x08, 0x0e, 0x0e}, /* 6 */
604 {0x0e, 0x02, 0x04, 0x08}, /* 7 */ 604 {0x0e, 0x02, 0x04, 0x08}, /* 7 */
605 {0x0e, 0x0e, 0x0a, 0x0e}, /* 8 */ 605 {0x0e, 0x0e, 0x0a, 0x0e}, /* 8 */
606 {0x0e, 0x0e, 0x02, 0x0e}, /* 9 */ 606 {0x0e, 0x0e, 0x02, 0x0e} /* 9 */
607 }; 607 };
608 608
609 struct wps_state *state = skin_get_global_state(); 609 struct wps_state *state = skin_get_global_state();