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();

@ -1 +1 @@
Subproject commit a2c74f8cd5311f8050bcc5ea7d07b1ba4b697558
Subproject commit 3de9d6c9d6ec91ac9f056c3683c19f50b6a7016d

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) {