From c458447a346467de958123bf92f72c778d36da41 Mon Sep 17 00:00:00 2001 From: Lorenzo Carletti Date: Mon, 17 Jan 2022 06:04:56 +0100 Subject: [PATCH] Match the maximum amount of nestedness the game can reach --- src/c/custom_codes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/custom_codes.c b/src/c/custom_codes.c index 18bcf26..dafcff0 100644 --- a/src/c/custom_codes.c +++ b/src/c/custom_codes.c @@ -205,7 +205,7 @@ int custom_codes_parse_generic(int code, char* parserAddress, WINDOW* window, by else if(!window->inside_width_calc) { WINDOW w; - int possible_return_addresses = 4; + int possible_return_addresses = 10; int return_addresses[possible_return_addresses]; int nreturns = *((int*)(0x3005078)); cpuset((int*)(0x3005080), return_addresses, possible_return_addresses * 2);