forked from len0rd/rockbox
When failing to auto-load a bookmark, don't show the 'Nothing to resume' message. The selected file will (hopefully) be played instead.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16364 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5f540c784c
commit
932ef00aba
1 changed files with 5 additions and 1 deletions
|
|
@ -450,7 +450,11 @@ bool bookmark_load(const char* file, bool autoload)
|
|||
if (!play_bookmark(bookmark))
|
||||
{
|
||||
/* Selected bookmark not found. */
|
||||
gui_syncsplash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
|
||||
if (!autoload)
|
||||
{
|
||||
gui_syncsplash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue