removed "else"

The "if" block breaked out of the loop.  That means we can move the
code out of the "else" block.
This commit is contained in:
Max Kellermann 2008-08-26 08:27:04 +02:00
parent 9e0f7dcd1a
commit 87beded44f

View File

@ -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();