mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-14 07:04:24 -04:00
fatal: Implement the first half of StopSoundTask
This commit is contained in:
parent
6335d21901
commit
f8abd2b402
4 changed files with 97 additions and 1 deletions
|
@ -72,6 +72,11 @@ void __appInit(void) {
|
|||
std::abort();
|
||||
}
|
||||
|
||||
rc = i2cInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
}
|
||||
|
||||
rc = bpcInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
|
@ -107,6 +112,7 @@ void __appExit(void) {
|
|||
lblExit();
|
||||
pcvExit();
|
||||
bpcExit();
|
||||
i2cExit();
|
||||
pminfoExit();
|
||||
setsysExit();
|
||||
smExit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue