mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-20 20:41:20 +01:00
fatal: Add missing bpcInitialize() call.
This commit is contained in:
parent
13e5043d64
commit
6f240b1665
@ -72,6 +72,11 @@ void __appInit(void) {
|
||||
std::abort();
|
||||
}
|
||||
|
||||
rc = bpcInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
}
|
||||
|
||||
rc = spsmInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
std::abort();
|
||||
@ -83,6 +88,7 @@ void __appInit(void) {
|
||||
void __appExit(void) {
|
||||
/* Cleanup services. */
|
||||
spsmExit();
|
||||
bpcExit();
|
||||
pminfoExit();
|
||||
setsysExit();
|
||||
smExit();
|
||||
|
Loading…
x
Reference in New Issue
Block a user