1
0
Fork 0
forked from len0rd/rockbox

Henrik Backe's resume-with-ON-key patch (#767082). Now you can resume playback after STOP is pressed by just hitting the ON key to go to the WPS.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3816 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-07-08 09:19:12 +00:00
parent adef8fb17e
commit 6e49e78c9b

View file

@ -540,7 +540,7 @@ static int showdir(char *path, int start)
return filesindir;
}
static bool ask_resume(void)
static bool ask_resume(bool ask_once)
{
#ifdef HAVE_LCD_CHARCELLS
lcd_double_height(false);
@ -571,7 +571,7 @@ static bool ask_resume(void)
break;
}
if ( global_settings.resume == RESUME_ASK_ONCE) {
if ( global_settings.resume == RESUME_ASK_ONCE && ask_once) {
global_settings.resume_index = -1;
settings_save();
}
@ -613,7 +613,7 @@ void reload_directory(void)
reload_dir = true;
}
static void start_resume(void)
static void start_resume(bool ask_once)
{
if ( global_settings.resume &&
global_settings.resume_index != -1 ) {
@ -621,7 +621,7 @@ static void start_resume(void)
global_settings.resume_index,
global_settings.resume_offset);
if (!ask_resume())
if (!ask_resume(ask_once))
return;
if (playlist_resume() != -1)
@ -817,7 +817,7 @@ static bool dirbrowse(char *root)
memcpy(currdir,root,sizeof(currdir));
start_resume();
start_resume(true);
numentries = showdir(currdir, dirstart);
if (numentries == -1)
@ -1159,6 +1159,11 @@ static bool dirbrowse(char *root)
#endif
restore = true;
}
else
{
start_resume(false);
restore = true;
}
}
break;