From 9944d8e7e1de78ae311685b94226d3c14dfe6c78 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 1 May 2018 11:08:21 -0600 Subject: [PATCH] Boot2: Remove svcExitProcess (handled by libnx). --- stratosphere/boot2/source/boot2_main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/stratosphere/boot2/source/boot2_main.cpp b/stratosphere/boot2/source/boot2_main.cpp index 1a02558ef..1c290701f 100644 --- a/stratosphere/boot2/source/boot2_main.cpp +++ b/stratosphere/boot2/source/boot2_main.cpp @@ -88,7 +88,7 @@ bool ShouldForceMaintenanceMode() { } static const std::tuple 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(0x010000000000001C, true), /* nvnflinger */ std::make_tuple(0x010000000000002D, true), /* vi */ @@ -157,7 +157,5 @@ int main(int argc, char **argv) } } - while (true) { - svcExitProcess(); - } + return 0; } \ No newline at end of file