1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

set.mitm: pointer buffer size was increased to 0x200 in 13.0.0

This commit is contained in:
Michael Scire 2021-09-15 17:27:36 -07:00 committed by SciresM
parent 04cbc06bc1
commit 568a3b62eb

View file

@ -33,7 +33,7 @@ namespace ams::mitm::settings {
constexpr sm::ServiceName SetSysMitmServiceName = sm::ServiceName::Encode("set:sys");
struct ServerOptions {
static constexpr size_t PointerBufferSize = 0x100;
static constexpr size_t PointerBufferSize = 0x200;
static constexpr size_t MaxDomains = 0;
static constexpr size_t MaxDomainObjects = 0;
};