summaryrefslogtreecommitdiff
path: root/apps/playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist.c')
-rw-r--r--apps/playlist.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 70a1a0823e..837e9d7f44 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -2201,12 +2201,11 @@ int playlist_resume(void)
2201 2201
2202 for(count=0; count<nread && !exit_loop && !useraborted; count++,p++) 2202 for(count=0; count<nread && !exit_loop && !useraborted; count++,p++)
2203 { 2203 {
2204 /* So a splash while we are loading. */ 2204 /* Show a splash while we are loading. */
2205 splash_progress((total_read + count), control_file_size,
2206 "%s (%s)", str(LANG_WAIT), str(LANG_OFF_ABORT));
2205 if (TIME_AFTER(current_tick, last_tick + HZ/4)) 2207 if (TIME_AFTER(current_tick, last_tick + HZ/4))
2206 { 2208 {
2207 splashf(0, str(LANG_LOADING_PERCENT),
2208 (total_read+count)*100/control_file_size,
2209 str(LANG_OFF_ABORT));
2210 if (action_userabort(TIMEOUT_NOBLOCK)) 2209 if (action_userabort(TIMEOUT_NOBLOCK))
2211 { 2210 {
2212 useraborted = true; 2211 useraborted = true;