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:
Billy Laws 2022-09-02 23:07:17 +01:00
parent 51f4e7662e
commit 9af5df4bae

View File

@ -228,7 +228,7 @@ namespace skyline::service {
break;
case ipc::ControlCommand::QueryPointerBufferSize:
response.Push<u32>(0x1000);
response.Push<u32>(0x8000);
break;
default: