Update IAudioDeviceService.cs

This commit is contained in:
Ac_K 2018-04-18 03:45:36 +02:00 committed by GitHub
commit 4ec898de12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,6 @@ namespace Ryujinx.Core.OsHle.Services.Aud
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
private KEvent SystemEvent; private KEvent SystemEvent;
//TODO: We shouldn't be signaling this here.
SystemEvent.Handle.Set();
public IAudioDeviceService() public IAudioDeviceService()
{ {
@ -27,6 +25,8 @@ namespace Ryujinx.Core.OsHle.Services.Aud
}; };
SystemEvent = new KEvent(); SystemEvent = new KEvent();
//TODO: We shouldn't be signaling this here.
SystemEvent.Handle.Set();
} }
public long ListAudioDeviceName(ServiceCtx Context) public long ListAudioDeviceName(ServiceCtx Context)