Isolate more services to separate threads (#1573)

* Isolate more services to separate threads

* Fix DisplayServer

* Add explanation for vi services
This commit is contained in:
mageven
2020-09-25 15:48:28 +05:30
committed by GitHub
parent bd28ce90e6
commit 16e9d15674
5 changed files with 8 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid
private HidAccelerometerParameters _accelerometerParams;
private HidVibrationValue _vibrationValue;
public IHidServer(ServiceCtx context)
public IHidServer(ServiceCtx context) : base(new ServerBase("HidServer"))
{
_xpadIdEvent = new KEvent(context.Device.System.KernelContext);
_palmaOperationCompleteEvent = new KEvent(context.Device.System.KernelContext);