Make stratosphere use new libnx HosVersion API

This commit is contained in:
Michael Scire
2019-02-20 14:17:51 -08:00
parent 92d8829ee1
commit f00dd05f82
8 changed files with 16 additions and 2 deletions

View File

@@ -56,6 +56,8 @@ void __libnx_initheap(void) {
void __appInit(void) {
Result rc;
SetFirmwareVersionForLibnx();
rc = smInitialize();
if (R_FAILED(rc)) {
fatalSimple(MAKERESULT(Module_Libnx, LibnxError_InitFail_SM));

View File

@@ -65,6 +65,8 @@ void __libnx_initheap(void) {
void __appInit(void) {
Result rc;
SetFirmwareVersionForLibnx();
/* Initialize services we need (TODO: NCM) */
rc = smInitialize();

View File

@@ -54,6 +54,8 @@ void __libnx_initheap(void) {
void __appInit(void) {
Result rc;
SetFirmwareVersionForLibnx();
rc = smInitialize();
if (R_FAILED(rc)) {

View File

@@ -63,6 +63,8 @@ void __libnx_initheap(void) {
void __appInit(void) {
Result rc;
SetFirmwareVersionForLibnx();
rc = smInitialize();
if (R_FAILED(rc)) {
std::abort();

View File

@@ -58,6 +58,8 @@ void __libnx_initheap(void) {
void __appInit(void) {
Result rc;
SetFirmwareVersionForLibnx();
/* Initialize services we need (TODO: SPL) */
rc = smInitialize();

View File

@@ -85,6 +85,8 @@ void RegisterPrivilegedProcessesWithFs() {
void __appInit(void) {
Result rc;
SetFirmwareVersionForLibnx();
rc = smInitialize();
if (R_FAILED(rc)) {

View File

@@ -55,7 +55,9 @@ void __libnx_initheap(void) {
}
void __appInit(void) {
/* We must do no setup here, because we are sm. */
SetFirmwareVersionForLibnx();
/* We must do no service setup here, because we are sm. */
}
void __appExit(void) {