1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere synced 2025-01-10 23:04:44 +00:00

loader: fix failure-to-early-return in launch record management

This commit is contained in:
Michael Scire 2021-01-18 06:20:13 -08:00
parent ac2c713ee0
commit 15b225f919

View file

@ -44,6 +44,7 @@ namespace ams::ldr {
for (size_t i = 0; i < MaxBootPrograms; ++i) {
if (g_launched_boot_programs[i] == ncm::InvalidProgramId) {
g_launched_boot_programs[i] = program_id;
return;
}
}
AMS_ABORT("Too many boot programs");