diff --git a/stratosphere/fatal/source/fatal_main.cpp b/stratosphere/fatal/source/fatal_main.cpp index 211c223..e9fb47c 100644 --- a/stratosphere/fatal/source/fatal_main.cpp +++ b/stratosphere/fatal/source/fatal_main.cpp @@ -72,6 +72,11 @@ std::abort(); } + rc = bpcInitialize(); + if (R_FAILED(rc)) { + std::abort(); + } + rc = spsmInitialize(); if (R_FAILED(rc)) { std::abort(); @@ -83,6 +88,7 @@ void __appExit(void) { /* Cleanup services. */ spsmExit(); + bpcExit(); pminfoExit(); setsysExit(); smExit();