Commit 87beded4 authored by Max Kellermann's avatar Max Kellermann

removed "else"

The "if" block breaked out of the loop. That means we can move the code out of the "else" block.
parent 9e0f7dcd
......@@ -467,9 +467,10 @@ static void decodeParent(void)
"while playing \"%s\"\n",
get_song_url(tmp, dc.next_song));
break;
} else {
player_wakeup_decoder();
}
player_wakeup_decoder();
if (do_pause) {
dropBufferedAudio();
closeAudioDevice();
......
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