From e44d20bdbcda3e46733922c5792b128fe674bbb6 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Sun, 16 Aug 2020 18:46:30 +0200 Subject: [PATCH] bruh --- src/audio.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/audio.cpp b/src/audio.cpp index f7727ab6..9eb1e01c 100644 --- a/src/audio.cpp +++ b/src/audio.cpp @@ -77,12 +77,16 @@ namespace audio { return; } if (astr->type == STREAM_TYPE_MONO) { + spdlog::warn("=> Stopping monoDynSplit"); astr->monoDynSplit->stop(); } else { + spdlog::warn("=> Stopping stereoDynSplit"); astr->stereoDynSplit->stop(); } + spdlog::warn("=> Stopping audio"); astr->audio->stop(); + spdlog::warn("=> Done"); astr->running = false; }