diff options
Diffstat (limited to 'src/playlist.c')
-rw-r--r-- | src/playlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.c b/src/playlist.c index 8cffefc5e..e680af1e6 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1118,7 +1118,7 @@ static void randomizeOrder(int start, int end) clearPlayerQueue(); for (i = start; i <= end; i++) { - ri = g_rand_int_range(g_rand, start, end + 1); + ri = g_rand_int_range(g_rand, i, end + 1); if (ri == playlist.current) playlist.current = i; else if (i == playlist.current) @@ -1201,7 +1201,7 @@ void shufflePlaylist(void) } /* shuffle the rest of the list */ for (; i < playlist.length; i++) { - ri = g_rand_int_range(g_rand, 1, playlist.length); + ri = g_rand_int_range(g_rand, i, playlist.length); swapSongs(i, ri); } |