diff options
-rw-r--r-- | src/output_thread.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/output_thread.c b/src/output_thread.c index acedd863e..d414ba8d5 100644 --- a/src/output_thread.c +++ b/src/output_thread.c @@ -246,7 +246,11 @@ static gpointer audio_output_task(gpointer arg) case AO_COMMAND_PAUSE: ao_pause(ao); - break; + /* don't "break" here: this might cause + ao_play() to be called when command==CLOSE + ends the paused state - "continue" checks + the new command first */ + continue; case AO_COMMAND_CANCEL: ao->chunk = NULL; |