diff options
Diffstat (limited to 'Ryujinx.Audio/Renderer/Server')
| -rw-r--r-- | Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs b/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs index 71d0f318..f471a2e7 100644 --- a/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs +++ b/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs @@ -215,6 +215,14 @@ namespace Ryujinx.Audio.Renderer.Server } /// <summary> + /// Stop sending commands to the <see cref="AudioProcessor"/> without stopping the worker thread. + /// </summary> + public void StopSendingCommands() + { + _isRunning = false; + } + + /// <summary> /// Worker main function. This is used to dispatch audio renderer commands to the <see cref="AudioProcessor"/>. /// </summary> private void SendCommands() |
