summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-09-18 09:25:55 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-09-18 09:25:55 +0000
commit4854a2ce033f28cc84ccf9350f399e4000d90ea9 (patch)
tree789a52d062d6a1ab662dd5dbb2c1021b9d4699a8
parent808519ed69ca6121bfb2d82266c570e88132e271 (diff)
downloadrockbox-4854a2ce033f28cc84ccf9350f399e4000d90ea9.tar.gz
rockbox-4854a2ce033f28cc84ccf9350f399e4000d90ea9.zip
Added question about shuffle
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2320 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--docs/FAQ11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/FAQ b/docs/FAQ
index 318f905637..e468f1a491 100644
--- a/docs/FAQ
+++ b/docs/FAQ
@@ -430,3 +430,14 @@ A52: This information is in our manual (It sometimes gets a bit out of
430 date, so please bear with us.) The information you are most likely 430 date, so please bear with us.) The information you are most likely
431 looking for is a bit down the tree, so the heres the url: 431 looking for is a bit down the tree, so the heres the url:
432 http://rockbox.haxx.se/manual/rec-general.html 432 http://rockbox.haxx.se/manual/rec-general.html
433
434Q53: How does the shuffle work?
435A53: It sees the playlist as a deck of cards, shuffling the entries using a
436 pseudo-random generator called the Mersenne Twister. After shuffling,
437 the list is never changed again until you reshuffle the list, by
438 stopping the playback and restarting. If the repeat mode is enabled,
439 the list will simply start over from the first file again, without
440 reshuffling.
441 The random seed is stored in the persistent setting area, so that the
442 resume feature can shuffle the playlist in exactly the same way when
443 resuming.