rtp: more libnx api updates

This commit is contained in:
Michael Scire 2019-01-24 09:11:46 -08:00
parent c56db864eb
commit f15fc6645e

View file

@ -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;
}