From 9cfd259c5c229a2147d398fbb002e8512dc6bbef Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 12 Jan 2021 02:31:57 -0800 Subject: [PATCH] spl: reduce heap size --- stratosphere/spl/source/spl_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/spl/source/spl_main.cpp b/stratosphere/spl/source/spl_main.cpp index 5a615d303..bcf7c7179 100644 --- a/stratosphere/spl/source/spl_main.cpp +++ b/stratosphere/spl/source/spl_main.cpp @@ -31,7 +31,7 @@ extern "C" { u32 __nx_applet_type = AppletType_None; - #define INNER_HEAP_SIZE 0x4000 + #define INNER_HEAP_SIZE 0x2000 size_t nx_inner_heap_size = INNER_HEAP_SIZE; char nx_inner_heap[INNER_HEAP_SIZE];