Revert "mariko 64lut cleanup"

This reverts commit 88ca2e8688.
This commit is contained in:
souldbminersmwc
2026-07-27 15:12:29 -04:00
parent 1fc9afd6d1
commit 7e4b4b5b1d
6 changed files with 83 additions and 83 deletions

View File

@@ -813,6 +813,12 @@ namespace ams::ldr {
}
Result CreateProcessAndLoadAutoLoadModules(ProcessInfo *out, const Meta *meta, const AutoLoadModuleContext &ctx, const ArgumentStore::Entry *argument, u32 flags, os::NativeHandle resource_limit) {
/* Append extra .bss for 64LUT */
/* TODO: REMOVE THIS. */
if (g_is_pcv && ctx.main_nso_idx >= 0) {
g_nso_headers[ctx.main_nso_idx].bss_size += static_cast<u32>(hoc::pcv::HocPcvScratchSize);
}
/* Get CreateProcessParameter. */
svc::CreateProcessParameter param;
R_TRY(GetCreateProcessParameter(std::addressof(param), meta, flags, resource_limit));