Skip to content

Commit

Permalink
Assume non-homebrew if DSi System Menu ROM is found
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Sep 16, 2024
1 parent f9fde5a commit 0cadfab
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions quickmenu/arm9/source/iconTitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,10 @@ void getGameInfo(int num, bool isDir, const char* name)
isHomebrew[num] = false;
isModernHomebrew[num] = false;
}
} else if (strncmp(gameTid[num], "HNA", 3) == 0) {
// Modcrypted
isHomebrew[num] = false;
isModernHomebrew[num] = false;
}

if (isHomebrew[num]) {
Expand Down
4 changes: 4 additions & 0 deletions romsel_aktheme/arm9/source/iconTitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1209,6 +1209,10 @@ void getGameInfo(int num, bool isDir, const char* name)
isHomebrew[num] = false;
isModernHomebrew[num] = false;
}
} else if (strncmp(gameTid[num], "HNA", 3) == 0) {
// Modcrypted
isHomebrew[num] = false;
isModernHomebrew[num] = false;
}

if (isHomebrew[num]) {
Expand Down
4 changes: 4 additions & 0 deletions romsel_dsimenutheme/arm9/source/iconTitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,10 @@ void getGameInfo(bool isDir, const char *name, int num, bool fromArgv) {
isHomebrew[num] = false;
isModernHomebrew[num] = false;
}
} else if (strncmp(gameTid[num], "HNA", 3) == 0) {
// Modcrypted
isHomebrew[num] = false;
isModernHomebrew[num] = false;
}

if (isHomebrew[num]) {
Expand Down
4 changes: 4 additions & 0 deletions romsel_r4theme/arm9/source/iconTitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1156,6 +1156,10 @@ void getGameInfo(bool isDir, const char* name)
isHomebrew = false;
isModernHomebrew = false;
}
} else if (strncmp(gameTid, "HNA", 3) == 0) {
// Modcrypted
isHomebrew = false;
isModernHomebrew = false;
}

if (isHomebrew) {
Expand Down

0 comments on commit 0cadfab

Please sign in to comment.