mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-15 03:27:49 +01:00
dmnt: only init roDmnt when we can
This commit is contained in:
parent
3a8f9114fc
commit
d44b91826d
@ -82,9 +82,12 @@ void __appInit(void) {
|
|||||||
fatalSimple(rc);
|
fatalSimple(rc);
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = roDmntInitialize();
|
/* TODO: We provide this on every sysver via ro. Do we need a shim? */
|
||||||
if (R_FAILED(rc)) {
|
if (GetRuntimeFirmwareVersion() >= FirmwareVersion_300) {
|
||||||
fatalSimple(rc);
|
rc = roDmntInitialize();
|
||||||
|
if (R_FAILED(rc)) {
|
||||||
|
fatalSimple(rc);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = nsdevInitialize();
|
rc = nsdevInitialize();
|
||||||
|
Loading…
Reference in New Issue
Block a user