mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-07-14 13:12:13 +02:00
pm: think of the savings
This commit is contained in:
parent
241697b8ba
commit
4ca1137187
@ -71,7 +71,7 @@ void __appInit(void) {
|
|||||||
R_ABORT_UNLESS(roDmntInitialize());
|
R_ABORT_UNLESS(roDmntInitialize());
|
||||||
}
|
}
|
||||||
R_ABORT_UNLESS(nsdevInitialize());
|
R_ABORT_UNLESS(nsdevInitialize());
|
||||||
R_ABORT_UNLESS(lrInitialize());
|
lr::Initialize();
|
||||||
R_ABORT_UNLESS(setInitialize());
|
R_ABORT_UNLESS(setInitialize());
|
||||||
R_ABORT_UNLESS(setsysInitialize());
|
R_ABORT_UNLESS(setsysInitialize());
|
||||||
R_ABORT_UNLESS(hidInitialize());
|
R_ABORT_UNLESS(hidInitialize());
|
||||||
@ -90,7 +90,7 @@ void __appExit(void) {
|
|||||||
hidExit();
|
hidExit();
|
||||||
setsysExit();
|
setsysExit();
|
||||||
setExit();
|
setExit();
|
||||||
lrExit();
|
lr::Finalize();
|
||||||
nsdevExit();
|
nsdevExit();
|
||||||
roDmntExit();
|
roDmntExit();
|
||||||
ldrDmntExit();
|
ldrDmntExit();
|
||||||
|
@ -141,7 +141,6 @@ void __appInit(void) {
|
|||||||
/* Use AMS manager extension to tell SM that FS has been worked around. */
|
/* Use AMS manager extension to tell SM that FS has been worked around. */
|
||||||
R_ABORT_UNLESS(sm::manager::EndInitialDefers());
|
R_ABORT_UNLESS(sm::manager::EndInitialDefers());
|
||||||
|
|
||||||
R_ABORT_UNLESS(lrInitialize());
|
|
||||||
R_ABORT_UNLESS(ldrPmInitialize());
|
R_ABORT_UNLESS(ldrPmInitialize());
|
||||||
R_ABORT_UNLESS(splInitialize());
|
R_ABORT_UNLESS(splInitialize());
|
||||||
});
|
});
|
||||||
@ -153,7 +152,6 @@ void __appExit(void) {
|
|||||||
/* Cleanup services. */
|
/* Cleanup services. */
|
||||||
splExit();
|
splExit();
|
||||||
ldrPmExit();
|
ldrPmExit();
|
||||||
lrExit();
|
|
||||||
smManagerExit();
|
smManagerExit();
|
||||||
fsprExit();
|
fsprExit();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user