early-access version 3127

main
pineappleEA 2022-11-18 11:54:03 +01:00
parent a97dee98aa
commit 4083a92d92
2 changed files with 3 additions and 15 deletions

View File

@ -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

View File

@ -265,20 +265,8 @@ void SinkStream::ProcessAudioOutAndRender(std::span<s16> 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