1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-02-09 20:04:47 +01:00

Merge pull request from Squall-Leonhart/ResourceToGetResource

service: hid: Ensure resource manager is initialized
This commit is contained in:
Narr the Reg 2023-11-19 20:10:38 -06:00 committed by GitHub
commit 99a8f7fb72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1563,7 +1563,7 @@ void IHidServer::CreateActiveVibrationDeviceList(HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(ResultSuccess);
rb.PushIpcInterface<IActiveVibrationDeviceList>(system, resource_manager);
rb.PushIpcInterface<IActiveVibrationDeviceList>(system, GetResourceManager());
}
void IHidServer::PermitVibration(HLERequestContext& ctx) {