Now clears the resume point at end-of-list. This fixes bug #627344.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2756 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1a2712072b
commit
c225790e26
1 changed files with 5 additions and 3 deletions
|
@ -406,14 +406,16 @@ static bool ffwd_rew(int button)
|
|||
static bool update(void)
|
||||
{
|
||||
bool track_changed = mpeg_has_changed_track();
|
||||
bool retcode = false;
|
||||
|
||||
if (track_changed)
|
||||
{
|
||||
lcd_stop_scroll();
|
||||
id3 = mpeg_current_track();
|
||||
if (wps_display(id3))
|
||||
return true;
|
||||
wps_refresh(id3,0,true);
|
||||
retcode = true;
|
||||
else
|
||||
wps_refresh(id3,0,true);
|
||||
}
|
||||
|
||||
if (id3)
|
||||
|
@ -437,7 +439,7 @@ static bool update(void)
|
|||
settings_save();
|
||||
}
|
||||
|
||||
return false;
|
||||
return retcode;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue