mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
boot2: fix tma launch when htc is disabled
This commit is contained in:
parent
35c816d62f
commit
c9015581ca
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ namespace ams::boot2 {
|
||||||
if (svc::IsKernelMesosphere() && IsHtcEnabled()) {
|
if (svc::IsKernelMesosphere() && IsHtcEnabled()) {
|
||||||
LaunchProgram(nullptr, ncm::ProgramLocation::Make(ncm::SystemProgramId::Htc, ncm::StorageId::None), 0);
|
LaunchProgram(nullptr, ncm::ProgramLocation::Make(ncm::SystemProgramId::Htc, ncm::StorageId::None), 0);
|
||||||
} else {
|
} else {
|
||||||
LaunchProgram(nullptr, ncm::ProgramLocation::Make(ncm::SystemProgramId::Tma, ncm::StorageId::None), 0);
|
LaunchProgram(nullptr, ncm::ProgramLocation::Make(ncm::SystemProgramId::Tma, ncm::StorageId::BuiltInSystem), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Launch additional programs. */
|
/* Launch additional programs. */
|
||||||
|
|
Loading…
Reference in a new issue