From e41076522c46a66edafe3d3be7dab180c725348d Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sun, 9 Jul 2023 01:41:09 +0300 Subject: [PATCH] Remove outdated warning --- src/core/loader/ncch.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/loader/ncch.cpp b/src/core/loader/ncch.cpp index 75e0196a..bbc025cc 100644 --- a/src/core/loader/ncch.cpp +++ b/src/core/loader/ncch.cpp @@ -216,10 +216,6 @@ bool NCCH::loadFromHeader(Crypto::AESEngine &aesEngine, IOFile& file, const FSIn printf("RomFS offset: %08llX, size: %08llX\n", romFS.offset, romFS.size); } - if (stackSize != 0 && stackSize != VirtualAddrs::DefaultStackSize) { - Helpers::warn("Requested stack size is %08X bytes. Temporarily emulated as 0x4000 until adjustable sizes are added\n", stackSize); - } - initialized = true; return true; }