sysclk: properly init applet service

This commit is contained in:
souldbminersmwc
2026-03-12 20:50:02 -04:00
parent d7e5c38a62
commit 4259ace5c4

View File

@@ -93,6 +93,9 @@ extern "C"
rc = i2cInitialize();
if (R_FAILED(rc))
diagAbortWithResult(MAKERESULT(Module_Libnx, LibnxError_ShouldNotHappen));
rc = appletInitialize();
if (R_FAILED(rc))
diagAbortWithResult(MAKERESULT(Module_Libnx, LibnxError_ShouldNotHappen));
}
void __appExit(void)
@@ -102,6 +105,7 @@ extern "C"
i2cExit();
fsExit();
fsdevUnmountAll();
appletExit();
}
}