Skip to content

Commit

Permalink
Increase Stack and Heap size again as it caused issues
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Apr 20, 2020
1 parent ed00b96 commit 0f26f78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ BUILD := build
SOURCES := source
DATA := data
INCLUDES := include
APP_VERSION := 1.0.3
APP_VERSION := 1.0.5

ifeq ($(RELEASE),)
APP_VERSION := $(APP_VERSION)-$(shell git describe --dirty --always)
Expand Down
2 changes: 1 addition & 1 deletion ovll.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title_id": "0x420000000007E51A",
"title_id_range_min": "0x420000000007E51A",
"title_id_range_max": "0x420000000007E51A",
"main_thread_stack_size": "0x10000",
"main_thread_stack_size": "0x30000",
"main_thread_priority": 49,
"default_cpu_id": 3,
"process_category": 0,
Expand Down
2 changes: 1 addition & 1 deletion source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void __appInit(void)
rc = setsysGetFirmwareVersion(&fw);
if (R_SUCCEEDED(rc))
hosversionSet(MAKEHOSVERSION(fw.major, fw.minor, fw.micro));
g_appletHeapSize = 0x400000;
g_appletHeapSize = 0x600000;
g_appletHeapReservationSize = 0x00;
setsysExit();
}
Expand Down

0 comments on commit 0f26f78

Please sign in to comment.