fatal: Implement AdjustClockTask

This commit is contained in:
Michael Scire 2018-11-10 03:05:14 -08:00
parent aa86d1abfa
commit e96eaa3d7c
4 changed files with 84 additions and 1 deletions

View file

@ -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();