pm: think of the savings

This commit is contained in:
Michael Scire 2020-03-06 04:58:48 -08:00
parent 241697b8ba
commit 4ca1137187
2 changed files with 2 additions and 4 deletions

View file

@ -71,7 +71,7 @@ void __appInit(void) {
R_ABORT_UNLESS(roDmntInitialize());
}
R_ABORT_UNLESS(nsdevInitialize());
R_ABORT_UNLESS(lrInitialize());
lr::Initialize();
R_ABORT_UNLESS(setInitialize());
R_ABORT_UNLESS(setsysInitialize());
R_ABORT_UNLESS(hidInitialize());
@ -90,7 +90,7 @@ void __appExit(void) {
hidExit();
setsysExit();
setExit();
lrExit();
lr::Finalize();
nsdevExit();
roDmntExit();
ldrDmntExit();

View file

@ -141,7 +141,6 @@ void __appInit(void) {
/* Use AMS manager extension to tell SM that FS has been worked around. */
R_ABORT_UNLESS(sm::manager::EndInitialDefers());
R_ABORT_UNLESS(lrInitialize());
R_ABORT_UNLESS(ldrPmInitialize());
R_ABORT_UNLESS(splInitialize());
});
@ -153,7 +152,6 @@ void __appExit(void) {
/* Cleanup services. */
splExit();
ldrPmExit();
lrExit();
smManagerExit();
fsprExit();
}