mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-14 15:14:23 -04:00
fatal: Implement BacklightControlTask
This commit is contained in:
parent
e96eaa3d7c
commit
5649b6d63f
4 changed files with 67 additions and 1 deletions
|
@ -82,6 +82,11 @@ void __appInit(void) {
|
|||
std::abort();
|
||||
}
|
||||
|
||||
rc = lblInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
}
|
||||
|
||||
rc = psmInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
|
@ -99,6 +104,7 @@ void __appExit(void) {
|
|||
/* Cleanup services. */
|
||||
spsmExit();
|
||||
psmExit();
|
||||
lblExit();
|
||||
pcvExit();
|
||||
bpcExit();
|
||||
pminfoExit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue