ro: simplify program id logic

This commit is contained in:
Michael Scire
2021-10-01 19:10:19 -07:00
parent 65fd967550
commit a774833790
3 changed files with 3 additions and 15 deletions

View File

@@ -144,9 +144,6 @@ void __appInit(void) {
R_ABORT_UNLESS(setsysInitialize());
R_ABORT_UNLESS(fsInitialize());
spl::Initialize();
if (hos::GetVersion() < hos::Version_3_0_0) {
R_ABORT_UNLESS(pminfoInitialize());
}
R_ABORT_UNLESS(fs::MountSdCard("sdmc"));
@@ -155,9 +152,6 @@ void __appInit(void) {
void __appExit(void) {
fsExit();
if (hos::GetVersion() < hos::Version_3_0_0) {
pminfoExit();
}
setsysExit();
}