summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/lang/english.lang6
-rw-r--r--apps/playlist.c3
2 files changed, 3 insertions, 6 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 2f76111457..643d412c2c 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -245,13 +245,13 @@
245</phrase> 245</phrase>
246<phrase> 246<phrase>
247 id: LANG_PLAYLIST_SHUFFLE 247 id: LANG_PLAYLIST_SHUFFLE
248 desc: displayed on screen while shuffling a playlist 248 desc: DEPRECATED
249 user: 249 user:
250 <source> 250 <source>
251 *: "Shuffling..." 251 *: ""
252 </source> 252 </source>
253 <dest> 253 <dest>
254 *: "Shuffling..." 254 *: ""
255 </dest> 255 </dest>
256 <voice> 256 <voice>
257 *: "" 257 *: ""
diff --git a/apps/playlist.c b/apps/playlist.c
index 873db30a7d..99b8c68eb4 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -2376,9 +2376,6 @@ int playlist_shuffle(int random_seed, int start_index)
2376 playlist->first_index = start_index; 2376 playlist->first_index = start_index;
2377 start_current = true; 2377 start_current = true;
2378 } 2378 }
2379
2380 cond_talk_ids(LANG_WAIT);
2381 gui_syncsplash(0, str(LANG_PLAYLIST_SHUFFLE));
2382 2379
2383 randomise_playlist(playlist, random_seed, start_current, true); 2380 randomise_playlist(playlist, random_seed, start_current, true);
2384 2381