btdrv-mitm: halve memory footprint

This commit is contained in:
ndeadly 2020-07-12 14:46:52 +02:00
parent d2068b7912
commit 435ad27951
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": "0x20000",
"main_thread_stack_size": "0x10000",
"main_thread_priority": 16,
"default_cpu_id": 3,
"process_category": 1,

View file

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