diff --git a/src/audio/AudioThread.cpp b/src/audio/AudioThread.cpp index d17c68b..e74f236 100644 --- a/src/audio/AudioThread.cpp +++ b/src/audio/AudioThread.cpp @@ -326,6 +326,7 @@ void AudioThread::setupDevice(int deviceId) { } else { deviceController[parameters.deviceId]->bindThread(this); } + active = true; #else if (dac.isStreamOpen()) { @@ -473,6 +474,7 @@ void AudioThread::setActive(bool state) { } } } + active = state; #else if (state && !active && outputDevice != -1) { active = state;