summaryrefslogtreecommitdiff
path: root/apps/root_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/root_menu.c')
-rw-r--r--apps/root_menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/root_menu.c b/apps/root_menu.c
index 2c72cc47f7..d03fee35f7 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -297,12 +297,14 @@ static int wpsscrn(void* param)
297 } 297 }
298 else if ( global_status.resume_index != -1 ) 298 else if ( global_status.resume_index != -1 )
299 { 299 {
300 DEBUGF("Resume index %X offset %lX\n", 300 DEBUGF("Resume index %X crc32 %lX offset %lX\n",
301 global_status.resume_index, 301 global_status.resume_index,
302 (unsigned long)global_status.resume_crc32,
302 (unsigned long)global_status.resume_offset); 303 (unsigned long)global_status.resume_offset);
303 if (playlist_resume() != -1) 304 if (playlist_resume() != -1)
304 { 305 {
305 playlist_start(global_status.resume_index, 306 playlist_resume_track(global_status.resume_index,
307 global_status.resume_crc32,
306 global_status.resume_offset); 308 global_status.resume_offset);
307 ret_val = gui_wps_show(); 309 ret_val = gui_wps_show();
308 } 310 }