Update IAudioDeviceService.cs
This commit is contained in:
parent
876893fe0c
commit
4ec898de12
1 changed files with 2 additions and 2 deletions
|
@ -13,8 +13,6 @@ namespace Ryujinx.Core.OsHle.Services.Aud
|
|||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||
|
||||
private KEvent SystemEvent;
|
||||
//TODO: We shouldn't be signaling this here.
|
||||
SystemEvent.Handle.Set();
|
||||
|
||||
public IAudioDeviceService()
|
||||
{
|
||||
|
@ -27,6 +25,8 @@ namespace Ryujinx.Core.OsHle.Services.Aud
|
|||
};
|
||||
|
||||
SystemEvent = new KEvent();
|
||||
//TODO: We shouldn't be signaling this here.
|
||||
SystemEvent.Handle.Set();
|
||||
}
|
||||
|
||||
public long ListAudioDeviceName(ServiceCtx Context)
|
||||
|
|
Loading…
Add table
Reference in a new issue