summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink/sdl2_sink.cpp
diff options
context:
space:
mode:
authorBilly Laws <blaws05@gmail.com>2023-03-26 21:21:04 +0200
committerBilly Laws <blaws05@gmail.com>2023-03-27 23:01:41 +0200
commit530fe24768357d4151ac6c6aca4a0e122ef8260a (patch)
tree8c00084bd414502b7f911274b7ac6bd61626b37c /src/audio_core/sink/sdl2_sink.cpp
parentRun clang-format (diff)
downloadyuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.tar
yuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.tar.gz
yuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.tar.bz2
yuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.tar.lz
yuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.tar.xz
yuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.tar.zst
yuzu-530fe24768357d4151ac6c6aca4a0e122ef8260a.zip
Diffstat (limited to 'src/audio_core/sink/sdl2_sink.cpp')
-rw-r--r--src/audio_core/sink/sdl2_sink.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/audio_core/sink/sdl2_sink.cpp b/src/audio_core/sink/sdl2_sink.cpp
index c138dc628..ee1a0652f 100644
--- a/src/audio_core/sink/sdl2_sink.cpp
+++ b/src/audio_core/sink/sdl2_sink.cpp
@@ -88,7 +88,6 @@ public:
* Finalize the sink stream.
*/
void Finalize() override {
- Unstall();
if (device == 0) {
return;
}
@@ -116,7 +115,6 @@ public:
* Stop the sink stream.
*/
void Stop() override {
- Unstall();
if (device == 0 || paused) {
return;
}