mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
fatal: Add missing bpcInitialize() call.
This commit is contained in:
parent
13e5043d64
commit
6f240b1665
1 changed files with 6 additions and 0 deletions
|
@ -72,6 +72,11 @@ void __appInit(void) {
|
||||||
std::abort();
|
std::abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc = bpcInitialize();
|
||||||
|
if (R_FAILED(rc)) {
|
||||||
|
std::abort();
|
||||||
|
}
|
||||||
|
|
||||||
rc = spsmInitialize();
|
rc = spsmInitialize();
|
||||||
if (R_FAILED(rc)) {
|
if (R_FAILED(rc)) {
|
||||||
std::abort();
|
std::abort();
|
||||||
|
@ -83,6 +88,7 @@ void __appInit(void) {
|
||||||
void __appExit(void) {
|
void __appExit(void) {
|
||||||
/* Cleanup services. */
|
/* Cleanup services. */
|
||||||
spsmExit();
|
spsmExit();
|
||||||
|
bpcExit();
|
||||||
pminfoExit();
|
pminfoExit();
|
||||||
setsysExit();
|
setsysExit();
|
||||||
smExit();
|
smExit();
|
||||||
|
|
Loading…
Reference in a new issue