1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-13 23:46:40 +00:00

Boot2: Remove svcExitProcess (handled by libnx).

This commit is contained in:
Michael Scire 2018-05-01 11:08:21 -06:00
parent c12de33440
commit 9944d8e7e1

View file

@ -88,7 +88,7 @@ bool ShouldForceMaintenanceMode() {
} }
static const std::tuple<u64, bool> g_additional_launch_programs[] = { static const std::tuple<u64, bool> g_additional_launch_programs[] = {
std::make_tuple(0x0100000000000023, true), /* am */std::make_tuple(0x0100000000000023, true), /* am */ std::make_tuple(0x0100000000000023, true), /* am */
std::make_tuple(0x0100000000000019, true), /* nvservices */ std::make_tuple(0x0100000000000019, true), /* nvservices */
std::make_tuple(0x010000000000001C, true), /* nvnflinger */ std::make_tuple(0x010000000000001C, true), /* nvnflinger */
std::make_tuple(0x010000000000002D, true), /* vi */ std::make_tuple(0x010000000000002D, true), /* vi */
@ -157,7 +157,5 @@ int main(int argc, char **argv)
} }
} }
while (true) { return 0;
svcExitProcess();
}
} }