From f15fc6645e253b57543a1d583bc82a8d01bdb64e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 24 Jan 2019 09:11:46 -0800 Subject: [PATCH] rtp: more libnx api updates --- troposphere/reboot_to_payload/source/main.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/troposphere/reboot_to_payload/source/main.c b/troposphere/reboot_to_payload/source/main.c index db2ab4056..896c52991 100644 --- a/troposphere/reboot_to_payload/source/main.c +++ b/troposphere/reboot_to_payload/source/main.c @@ -52,7 +52,6 @@ static void reboot_to_payload(void) { int main(int argc, char **argv) { - fsdevMountSdmc(); consoleInit(NULL); bool can_reboot = true; @@ -88,14 +87,13 @@ int main(int argc, char **argv) } if (kDown & KEY_L) { break; } // break in order to return to hbmenu - gfxFlushBuffers(); - gfxSwapBuffers(); + consoleUpdate(NULL); } if (can_reboot) { splExit(); } - fsdevUnmountAll(); + consoleExit(NULL); return 0; }