diff --git a/stratosphere/fatal/source/fatal_main.cpp b/stratosphere/fatal/source/fatal_main.cpp index 211c22374..e9fb47c44 100644 --- a/stratosphere/fatal/source/fatal_main.cpp +++ b/stratosphere/fatal/source/fatal_main.cpp @@ -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();