mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-04 21:15:10 +01:00
Increase IPC pointer buffer size
Some services report a pointer buffer size > 0x1000, so up it as to not cause issues when they're implemented.
This commit is contained in:
parent
51f4e7662e
commit
9af5df4bae
@ -228,7 +228,7 @@ namespace skyline::service {
|
||||
break;
|
||||
|
||||
case ipc::ControlCommand::QueryPointerBufferSize:
|
||||
response.Push<u32>(0x1000);
|
||||
response.Push<u32>(0x8000);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user