From c56db864eb641c333200e996ce5f12eddbee8ef5 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 24 Jan 2019 09:10:51 -0800 Subject: [PATCH] rtp: update to new libnx console API --- troposphere/reboot_to_payload/source/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/troposphere/reboot_to_payload/source/main.c b/troposphere/reboot_to_payload/source/main.c index 297f5fa86..db2ab4056 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) { - gfxInitDefault(); fsdevMountSdmc(); consoleInit(NULL); @@ -97,7 +96,7 @@ int main(int argc, char **argv) splExit(); } fsdevUnmountAll(); - gfxExit(); + consoleExit(NULL); return 0; }