diff options
Diffstat (limited to '')
-rw-r--r-- | src/output/OutputControl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/OutputControl.cxx b/src/output/OutputControl.cxx index 921369722..89428fa87 100644 --- a/src/output/OutputControl.cxx +++ b/src/output/OutputControl.cxx @@ -124,7 +124,7 @@ AudioOutput::Open(const AudioFormat audio_format, const MusicPipe &mp) assert(pipe == &mp || (always_on && pause)); if (pause) { - chunk = nullptr; + current_chunk = nullptr; pipe = ∓ /* unpause with the CANCEL command; this is a @@ -141,7 +141,7 @@ AudioOutput::Open(const AudioFormat audio_format, const MusicPipe &mp) } in_audio_format = audio_format; - chunk = nullptr; + current_chunk = nullptr; pipe = ∓ |