Update IAudioDeviceService.cs

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

View file

@ -13,6 +13,8 @@ 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()
{ {
@ -52,9 +54,6 @@ namespace Ryujinx.Core.OsHle.Services.Aud
Position += Buffer.Length; Position += Buffer.Length;
} }
//TODO: We shouldn't be signaling this here.
SystemEvent.Handle.Set();
return 0; return 0;
} }