Ignore this, generating a debug build on CI

This commit is contained in:
wheremyfoodat 2023-08-10 01:46:45 +03:00 committed by GitHub
commit 322a96adef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 code.resize(code.size() + bssSize, 0); // Pad the .code file with zeroes for the BSS segment
if (code.size() < totalSize) { if (code.size() < totalSize) {
Helpers::panic("Total code size as reported by the exheader is larger than the .code file"); Helpers::warn("Total code size as reported by the exheader is larger than the .code file");
return false; //return false;
} }
const auto opt = findPaddr(totalSize); const auto opt = findPaddr(totalSize);