mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-13 22:54:24 -04:00
fatal: Implement AdjustClockTask
This commit is contained in:
parent
aa86d1abfa
commit
e96eaa3d7c
4 changed files with 84 additions and 1 deletions
|
@ -77,6 +77,11 @@ void __appInit(void) {
|
|||
std::abort();
|
||||
}
|
||||
|
||||
rc = pcvInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
}
|
||||
|
||||
rc = psmInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
|
@ -94,6 +99,7 @@ void __appExit(void) {
|
|||
/* Cleanup services. */
|
||||
spsmExit();
|
||||
psmExit();
|
||||
pcvExit();
|
||||
bpcExit();
|
||||
pminfoExit();
|
||||
setsysExit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue