From 876893fe0c9031ca5dc509d59bb63c83d399d102 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Wed, 18 Apr 2018 03:42:31 +0200 Subject: [PATCH] Update IAudioDeviceService.cs --- Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs b/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs index f99a0474cd..b50a58b689 100644 --- a/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs +++ b/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs @@ -13,6 +13,8 @@ namespace Ryujinx.Core.OsHle.Services.Aud public override IReadOnlyDictionary Commands => m_Commands; private KEvent SystemEvent; + //TODO: We shouldn't be signaling this here. + SystemEvent.Handle.Set(); public IAudioDeviceService() { @@ -52,9 +54,6 @@ namespace Ryujinx.Core.OsHle.Services.Aud Position += Buffer.Length; } - //TODO: We shouldn't be signaling this here. - SystemEvent.Handle.Set(); - return 0; }