set.mitm: language emulation (closes #489)

This commit is contained in:
Michael Scire
2019-05-22 12:11:40 -07:00
parent 6cc29185d2
commit 6f25e92892
10 changed files with 452 additions and 68 deletions

View File

@@ -78,6 +78,16 @@ void __appInit(void) {
if (R_FAILED(rc)) {
std::abort();
}
rc = pmdmntInitialize();
if (R_FAILED(rc)) {
std::abort();
}
rc = pminfoInitialize();
if (R_FAILED(rc)) {
std::abort();
}
});
CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);