diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-04-19 00:19:22 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-04-19 00:19:22 -0300 |
| commit | 6e69cd9284c0ba4bb25560f83dcea298169bdf7b (patch) | |
| tree | 34e91940bedc4a55f95cda8e1c18b9dab55d29ed /Ryujinx.Core/OsHle/Services | |
| parent | ac80e7d3f90496d5f16f53afed888cd854fe6975 (diff) | |
Fix bad merge, and a few other fixes
Diffstat (limited to 'Ryujinx.Core/OsHle/Services')
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs b/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs index c89bd2d2..b27d1448 100644 --- a/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs +++ b/Ryujinx.Core/OsHle/Services/Aud/IAudioDeviceService.cs @@ -25,8 +25,9 @@ namespace Ryujinx.Core.OsHle.Services.Aud }; SystemEvent = new KEvent(); + //TODO: We shouldn't be signaling this here. - SystemEvent.Handle.Set(); + SystemEvent.WaitEvent.Set(); } public long ListAudioDeviceName(ServiceCtx Context) |
