switch-examples/graphics/deko3d/deko_console/source/startup.c
2020-04-04 13:41:18 +02:00

14 lines
171 B
C

#include <switch.h>
void userAppInit(void)
{
Result res = romfsInit();
if (R_FAILED(res))
fatalThrow(res);
}
void userAppExit(void)
{
romfsExit();
}