IPC: Corrected some command headers in the IPC Controller interface.
This commit is contained in:
parent
166286e976
commit
ad965501d0
1 changed files with 2 additions and 4 deletions
|
@ -15,14 +15,13 @@ void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) {
|
|||
|
||||
IPC::RequestBuilder rb{ctx, 3};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Skip(1, true);
|
||||
rb.Push<u32>(static_cast<u32>(domain->request_handlers.size()));
|
||||
rb.Push(static_cast<u32>(domain->request_handlers.size()));
|
||||
|
||||
LOG_DEBUG(Service, "called, domain=%d", domain->GetObjectId());
|
||||
}
|
||||
|
||||
void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestBuilder rb{ctx, 1, 0, 1};
|
||||
IPC::RequestBuilder rb{ctx, 2, 0, 1};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.PushMoveObjects(ctx.ServerSession());
|
||||
|
||||
|
@ -32,7 +31,6 @@ void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
|
|||
void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestBuilder rb{ctx, 3};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Skip(1, true);
|
||||
rb.Push<u32>(0x500);
|
||||
|
||||
LOG_WARNING(Service, "(STUBBED) called");
|
||||
|
|
Loading…
Reference in a new issue