Skip to content

Commit

Permalink
playsound: fflush the "predecoding..." message, as we might block the…
Browse files Browse the repository at this point in the history
…re awhile.
  • Loading branch information
icculus committed Jul 17, 2018
1 parent 848a763 commit 191fed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playsound/playsound.c
Expand Up @@ -1082,7 +1082,7 @@ int main(int argc, char **argv)

if (global_state.predecode)
{
fprintf(stdout, " predecoding...");
fprintf(stdout, " predecoding..."); fflush(stdout);
global_state.decoded_bytes = Sound_DecodeAll(sample);
global_state.decoded_ptr = sample->buffer;
if (sample->flags & SOUND_SAMPLEFLAG_ERROR)
Expand Down

0 comments on commit 191fed5

Please sign in to comment.