mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-02-02 06:16:27 +01:00
fix(sm_controller): Correct QueryPointerBufferSize implementation
- Updated the QueryPointerBufferSize function to return the correct u16 pointer buffer size. - Ensured the function logs its call at the debug level. - Used IPC::ResponseBuilder to construct the response with the correct buffer size. This change addresses the stubbed implementation and ensures compliance with the HIPC protocol.
This commit is contained in:
parent
132077e18f
commit
498d016873
1 changed files with 4 additions and 2 deletions
|
@ -68,11 +68,13 @@ void Controller::CloneCurrentObjectEx(HLERequestContext& ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Controller::QueryPointerBufferSize(HLERequestContext& ctx) {
|
void Controller::QueryPointerBufferSize(HLERequestContext& ctx) {
|
||||||
LOG_WARNING(Service, "(STUBBED) called");
|
LOG_DEBUG(Service, "called");
|
||||||
|
|
||||||
|
u16 pointer_buffer_size = 0x8000; // Replace with the actual size if known
|
||||||
|
|
||||||
IPC::ResponseBuilder rb{ctx, 3};
|
IPC::ResponseBuilder rb{ctx, 3};
|
||||||
rb.Push(ResultSuccess);
|
rb.Push(ResultSuccess);
|
||||||
rb.Push<u16>(0x8000);
|
rb.Push<u16>(pointer_buffer_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://switchbrew.org/wiki/IPC_Marshalling
|
// https://switchbrew.org/wiki/IPC_Marshalling
|
||||||
|
|
Loading…
Reference in a new issue