romfs: revert memory usage increases; we'll handle torture games case-by-case.

This commit is contained in:
Michael Scire
2023-05-09 22:18:50 -07:00
parent efe7b63576
commit 94f69276cd
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ namespace ams {
namespace {
/* TODO: we really shouldn't be using malloc just to avoid dealing with real allocator separation. */
constexpr size_t MallocBufferSize = 32_MB;
constexpr size_t MallocBufferSize = 16_MB;
alignas(os::MemoryPageSize) constinit u8 g_malloc_buffer[MallocBufferSize];
}