mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
Merge pull request #12097 from Squall-Leonhart/ResourceToGetResource
service: hid: Ensure resource manager is initialized
This commit is contained in:
commit
99a8f7fb72
1 changed files with 1 additions and 1 deletions
|
@ -1563,7 +1563,7 @@ void IHidServer::CreateActiveVibrationDeviceList(HLERequestContext& ctx) {
|
||||||
|
|
||||||
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
||||||
rb.Push(ResultSuccess);
|
rb.Push(ResultSuccess);
|
||||||
rb.PushIpcInterface<IActiveVibrationDeviceList>(system, resource_manager);
|
rb.PushIpcInterface<IActiveVibrationDeviceList>(system, GetResourceManager());
|
||||||
}
|
}
|
||||||
|
|
||||||
void IHidServer::PermitVibration(HLERequestContext& ctx) {
|
void IHidServer::PermitVibration(HLERequestContext& ctx) {
|
||||||
|
|
Loading…
Reference in a new issue