summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/bookmark.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 91c823b018..1cebcd718f 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -450,7 +450,11 @@ bool bookmark_load(const char* file, bool autoload)
450 if (!play_bookmark(bookmark)) 450 if (!play_bookmark(bookmark))
451 { 451 {
452 /* Selected bookmark not found. */ 452 /* Selected bookmark not found. */
453 gui_syncsplash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME)); 453 if (!autoload)
454 {
455 gui_syncsplash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
456 }
457
454 return false; 458 return false;
455 } 459 }
456 } 460 }