dmnt-cheat: make cheats default toggle configurable

This commit is contained in:
Michael Scire 2019-03-06 00:20:17 -08:00
parent 4d0ab41e6e
commit d756f2fc0d
5 changed files with 43 additions and 12 deletions

View file

@ -99,6 +99,11 @@ void __appInit(void) {
fatalSimple(rc);
}
rc = setsysInitialize();
if (R_FAILED(rc)) {
fatalSimple(rc);
}
rc = hidInitialize();
if (R_FAILED(rc)) {
fatalSimple(rc);
@ -122,6 +127,7 @@ void __appExit(void) {
fsdevUnmountAll();
fsExit();
hidExit();
setsysExit();
setExit();
lrExit();
nsdevExit();