mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 00:58:20 -05:00
IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests.
Popping objects from the buffer is still not implemented.
This commit is contained in:
@ -24,7 +24,7 @@ void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) {
|
||||
void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestBuilder rb{ctx, 1, 0, 1};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.PushObjects(ctx.ServerSession());
|
||||
rb.PushMoveObjects(ctx.ServerSession());
|
||||
|
||||
LOG_DEBUG(Service, "called");
|
||||
}
|
||||
|
Reference in New Issue
Block a user