mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 03:16:41 +00:00
Run audren in a separate thread (#1572)
This commit is contained in:
parent
6c9565693f
commit
840afabc22
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio
|
|||
|
||||
public AudioRendererManagerServer(ServiceCtx context) : this(new AudioRendererManager(context.Device.System.AudioRendererManager, context.Device.System.AudioDeviceSessionRegistry)) { }
|
||||
|
||||
public AudioRendererManagerServer(IAudioRendererManager impl)
|
||||
public AudioRendererManagerServer(IAudioRendererManager impl) : base(new ServerBase("AudioRendererServer"))
|
||||
{
|
||||
_impl = impl;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue