From f2f25dd5ed21ff1881048e6eebbee2c189ceff72 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 3 Mar 2019 23:53:53 -0800 Subject: [PATCH] atmosphere: launch tma (fixes home button) --- stratosphere/pm/source/pm_boot2.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stratosphere/pm/source/pm_boot2.cpp b/stratosphere/pm/source/pm_boot2.cpp index fc739c88e..a7cdd8e3a 100644 --- a/stratosphere/pm/source/pm_boot2.cpp +++ b/stratosphere/pm/source/pm_boot2.cpp @@ -235,6 +235,9 @@ void EmbeddedBoot2::Main() { /* Launch usb. */ LaunchTitle(Boot2KnownTitleId::usb, FsStorageId_NandSystem, 0, NULL); + + /* Launch tma. */ + LaunchTitle(Boot2KnownTitleId::tma, FsStorageId_NandSystem, 0, NULL); /* Launch Atmosphere dmnt, using FsStorageId_None to force SD card boot. */ LaunchTitle(Boot2KnownTitleId::dmnt, FsStorageId_None, 0, NULL);