kern/pm: only steal 8 MB from applet.

WebApplet crashes on exit with 16 more MB stolen, apparently.
This commit is contained in:
Michael Scire 2023-01-24 19:54:28 -07:00
parent b7711b8fbc
commit 5f3af914d8

View File

@ -361,7 +361,7 @@ namespace ams::kern::board::nintendo::nx {
}();
/* Return (possibly) adjusted size. */
constexpr size_t ExtraSystemMemoryForAtmosphere = 56_MB;
constexpr size_t ExtraSystemMemoryForAtmosphere = 48_MB;
return base_pool_size - ExtraSystemMemoryForAtmosphere - KTraceBufferSize;
}