Merge pull request #6356 from ogniK5377/ApplyNpadSystemCommonPolicy
hid: ApplyNpadSystemCommonPolicy
This commit is contained in:
commit
945effcc75
|
@ -1770,7 +1770,7 @@ public:
|
||||||
{232, nullptr, "GetIrSensorState"},
|
{232, nullptr, "GetIrSensorState"},
|
||||||
{233, nullptr, "GetXcdHandleForNpadWithIrSensor"},
|
{233, nullptr, "GetXcdHandleForNpadWithIrSensor"},
|
||||||
{301, nullptr, "ActivateNpadSystem"},
|
{301, nullptr, "ActivateNpadSystem"},
|
||||||
{303, nullptr, "ApplyNpadSystemCommonPolicy"},
|
{303, &HidSys::ApplyNpadSystemCommonPolicy, "ApplyNpadSystemCommonPolicy"},
|
||||||
{304, nullptr, "EnableAssigningSingleOnSlSrPress"},
|
{304, nullptr, "EnableAssigningSingleOnSlSrPress"},
|
||||||
{305, nullptr, "DisableAssigningSingleOnSlSrPress"},
|
{305, nullptr, "DisableAssigningSingleOnSlSrPress"},
|
||||||
{306, nullptr, "GetLastActiveNpad"},
|
{306, nullptr, "GetLastActiveNpad"},
|
||||||
|
@ -1949,6 +1949,15 @@ public:
|
||||||
|
|
||||||
RegisterHandlers(functions);
|
RegisterHandlers(functions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
void ApplyNpadSystemCommonPolicy(Kernel::HLERequestContext& ctx) {
|
||||||
|
// We already do this for homebrew so we can just stub it out
|
||||||
|
LOG_WARNING(Service_HID, "called");
|
||||||
|
|
||||||
|
IPC::ResponseBuilder rb{ctx, 2};
|
||||||
|
rb.Push(RESULT_SUCCESS);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class HidTmp final : public ServiceFramework<HidTmp> {
|
class HidTmp final : public ServiceFramework<HidTmp> {
|
||||||
|
|
Reference in New Issue