Fixed AttachAvailabilityChangeEvent

This commit is contained in:
David Marcec
2018-09-24 12:29:38 +10:00
parent 6d9cfe6bd3
commit e922c70466

View File

@@ -258,7 +258,7 @@ private:
void AttachAvailabilityChangeEvent(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_NFP, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 2};
IPC::ResponseBuilder rb{ctx, 2, 1};
rb.Push(RESULT_SUCCESS);
rb.PushCopyObjects(availability_change_event);
}