1
0
Fork 0
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:
Magnus Holmgren 2008-02-21 21:01:42 +00:00
parent 5f540c784c
commit 932ef00aba

View file

@ -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;
}
}