mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
Make stratosphere use new libnx HosVersion API
This commit is contained in:
parent
92d8829ee1
commit
f00dd05f82
8 changed files with 16 additions and 2 deletions
|
@ -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));
|
||||
|
|
|
@ -65,6 +65,8 @@ void __libnx_initheap(void) {
|
|||
|
||||
void __appInit(void) {
|
||||
Result rc;
|
||||
|
||||
SetFirmwareVersionForLibnx();
|
||||
|
||||
/* Initialize services we need (TODO: NCM) */
|
||||
rc = smInitialize();
|
||||
|
|
|
@ -54,6 +54,8 @@ void __libnx_initheap(void) {
|
|||
|
||||
void __appInit(void) {
|
||||
Result rc;
|
||||
|
||||
SetFirmwareVersionForLibnx();
|
||||
|
||||
rc = smInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
|
|
|
@ -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
|
|
@ -58,6 +58,8 @@ void __libnx_initheap(void) {
|
|||
|
||||
void __appInit(void) {
|
||||
Result rc;
|
||||
|
||||
SetFirmwareVersionForLibnx();
|
||||
|
||||
/* Initialize services we need (TODO: SPL) */
|
||||
rc = smInitialize();
|
||||
|
|
|
@ -85,6 +85,8 @@ void RegisterPrivilegedProcessesWithFs() {
|
|||
|
||||
void __appInit(void) {
|
||||
Result rc;
|
||||
|
||||
SetFirmwareVersionForLibnx();
|
||||
|
||||
rc = smInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue