From 8a6feeb23156e3779d8734e06ff29ddf8deb0eb5 Mon Sep 17 00:00:00 2001 From: staphen Date: Sun, 19 Dec 2021 11:19:12 -0500 Subject: [PATCH] Reduce stack size on 3DS --- Source/platform/ctr/system.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Source/platform/ctr/system.cpp b/Source/platform/ctr/system.cpp index 4a785dbeb..39f24f386 100644 --- a/Source/platform/ctr/system.cpp +++ b/Source/platform/ctr/system.cpp @@ -9,13 +9,6 @@ using namespace devilution; -// Increase stack size for recursion in FindTransparencyValues() -// 128 KB supports around 500 levels of recursion -// Default stack size on 3DS is only 32 KB -extern "C" { -u32 __stacksize__ = 128 * 1024; -} - bool shouldDisableBacklight; aptHookCookie cookie;