aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xREADME.md2
-rwxr-xr-xsrc/audio_core/sink/sink_stream.cpp16
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 @@
1yuzu emulator early access 1yuzu emulator early access
2============= 2=============
3 3
4This is the source code for early-access 3126. 4This is the source code for early-access 3127.
5 5
6## Legal Notice 6## Legal Notice
7 7
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<s16> output_buffer, std::siz
265 } 265 }
266} 266}
267 267
268void SinkStream::Stall() { 268void SinkStream::Stall() {}
269 if (stalled) {
270 return;
271 }
272 stalled = true;
273 system.StallProcesses();
274}
275 269
276void SinkStream::Unstall() { 270void SinkStream::Unstall() {}
277 if (!stalled) {
278 return;
279 }
280 system.UnstallProcesses();
281 stalled = false;
282}
283 271
284} // namespace AudioCore::Sink 272} // namespace AudioCore::Sink