btdrv-mitm: reduce memory footprint

This commit is contained in:
ndeadly 2020-08-25 23:21:36 +02:00
parent 359d2749e4
commit 1160693c2e
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"title_id": "0x010000000000bd00",
"title_id_range_min": "0x010000000000bd00",
"title_id_range_max": "0x010000000000bd00",
"main_thread_stack_size": "0x10000",
"main_thread_stack_size": "0x4000",
"main_thread_priority": 16,
"default_cpu_id": 3,
"process_category": 1,

View file

@ -28,7 +28,7 @@ extern "C" {
u32 __nx_applet_type = AppletType_None;
u32 __nx_fs_num_sessions = 1;
#define INNER_HEAP_SIZE 0x40000
#define INNER_HEAP_SIZE 0x10000
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
char nx_inner_heap[INNER_HEAP_SIZE];