early-access version 3127
This commit is contained in:
parent
a97dee98aa
commit
4083a92d92
2 changed files with 3 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3126.
|
This is the source code for early-access 3127.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -265,20 +265,8 @@ void SinkStream::ProcessAudioOutAndRender(std::span<s16> output_buffer, std::siz
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SinkStream::Stall() {
|
void SinkStream::Stall() {}
|
||||||
if (stalled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
stalled = true;
|
|
||||||
system.StallProcesses();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SinkStream::Unstall() {
|
void SinkStream::Unstall() {}
|
||||||
if (!stalled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
system.UnstallProcesses();
|
|
||||||
stalled = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace AudioCore::Sink
|
} // namespace AudioCore::Sink
|
||||||
|
|
Loading…
Reference in a new issue