From 4083a92d928edbcba6a1b9a58e0ecf981100d927 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Fri, 18 Nov 2022 11:54:03 +0100 Subject: [PATCH] early-access version 3127 --- README.md | 2 +- src/audio_core/sink/sink_stream.cpp | 16 ++-------------- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 891a89760..8d517f8be 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3126. +This is the source code for early-access 3127. ## Legal Notice diff --git a/src/audio_core/sink/sink_stream.cpp b/src/audio_core/sink/sink_stream.cpp index 89520c805..5d8a96009 100755 --- a/src/audio_core/sink/sink_stream.cpp +++ b/src/audio_core/sink/sink_stream.cpp @@ -265,20 +265,8 @@ void SinkStream::ProcessAudioOutAndRender(std::span output_buffer, std::siz } } -void SinkStream::Stall() { - if (stalled) { - return; - } - stalled = true; - system.StallProcesses(); -} +void SinkStream::Stall() {} -void SinkStream::Unstall() { - if (!stalled) { - return; - } - system.UnstallProcesses(); - stalled = false; -} +void SinkStream::Unstall() {} } // namespace AudioCore::Sink