From 322a96adef756ae19f94fd2e9856e1a5c7c9bc02 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 10 Aug 2023 01:46:45 +0300 Subject: [PATCH] Ignore this, generating a debug build on CI --- src/core/loader/ncsd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);