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; }