Commit 4a510a26 authored by Max Kellermann's avatar Max Kellermann

playlist: simplified setPlaylistRandomStatus()

Check the old status before assigning. This saves a temporary variable.
parent b084bc28
......@@ -1152,11 +1152,11 @@ static void randomizeOrder(int start, int end)
void setPlaylistRandomStatus(bool status)
{
bool statusWas = playlist.random;
if (status == playlist.random)
return;
playlist.random = status;
if (status != statusWas) {
if (playlist.random) {
/*if(playlist_state==PLAYLIST_STATE_PLAY) {
randomizeOrder(playlist.current+1,
......@@ -1170,7 +1170,6 @@ void setPlaylistRandomStatus(bool status)
}
} else
orderPlaylist();
}
}
void previousSongInPlaylist(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment