diff --git a/src/core/loader/ncsd.cpp b/src/core/loader/ncsd.cpp index 2655cf72..7e21af50 100644 --- a/src/core/loader/ncsd.cpp +++ b/src/core/loader/ncsd.cpp @@ -39,8 +39,8 @@ bool Memory::mapCXI(NCSD& ncsd, NCCH& cxi) { code.resize(code.size() + bssSize, 0); // Pad the .code file with zeroes for the BSS segment if (code.size() < totalSize) { - Helpers::panic("Total code size as reported by the exheader is larger than the .code file"); - return false; + Helpers::warn("Total code size as reported by the exheader is larger than the .code file"); + //return false; } const auto opt = findPaddr(totalSize);