From 4ec898de1200b1568ae92aef72bd84135bf1e160 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Wed, 18 Apr 2018 03:45:36 +0200 Subject: [PATCH] Update IAudioDeviceService.cs --- Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs b/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs index b50a58b689..c89bd2d236 100644 --- a/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs +++ b/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs @@ -13,8 +13,6 @@ 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() { @@ -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)