summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/wps.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 45aa823..65b01b1 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -137,22 +137,20 @@ void display_keylock_text(bool locked)
void display_mute_text(bool muted)
{
- lcd_clear_display();
-
+ char *s;
+ lcd_stop_scroll();
#ifdef HAVE_LCD_CHARCELLS
if (muted)
- lcd_puts(0, 0, str(LANG_MUTE_ON_PLAYER));
+ s = str(LANG_MUTE_ON_PLAYER);
else
- lcd_puts(0, 0, str(LANG_MUTE_OFF_PLAYER));
+ s = str(LANG_MUTE_OFF_PLAYER);
#else
if (muted)
- lcd_puts(2, 3, str(LANG_MUTE_ON_RECORDER));
+ s = str(LANG_MUTE_ON_RECORDER);
else
- lcd_puts(2, 3, str(LANG_MUTE_OFF_RECORDER));
- lcd_update();
+ s = str(LANG_MUTE_OFF_RECORDER);
#endif
-
- sleep(HZ);
+ splash(HZ, true, s);
}
bool browse_id3(void)