Skip to content

Commit

Permalink
Fix #50
Browse files Browse the repository at this point in the history
  • Loading branch information
katajakasa committed Nov 18, 2018
1 parent ddae971 commit 4add351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kitplayer.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static int _RunDecoder(Kit_Player *player) {
Kit_Decoder *dec = player->decoders[i];
if(dec == NULL)
continue;
if(!Kit_CanWriteDecoderInput(dec)) {
if(!Kit_CanWriteDecoderInput(dec) || got == 1) {
has_room = false;
break;
}
Expand Down

0 comments on commit 4add351

Please sign in to comment.