diff --git a/quickmenu/arm9/source/iconTitle.cpp b/quickmenu/arm9/source/iconTitle.cpp index b5ba941057..5c8cbc6c7c 100644 --- a/quickmenu/arm9/source/iconTitle.cpp +++ b/quickmenu/arm9/source/iconTitle.cpp @@ -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]) { diff --git a/romsel_aktheme/arm9/source/iconTitle.cpp b/romsel_aktheme/arm9/source/iconTitle.cpp index cb9ed95a37..b3811b0bbd 100644 --- a/romsel_aktheme/arm9/source/iconTitle.cpp +++ b/romsel_aktheme/arm9/source/iconTitle.cpp @@ -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]) { diff --git a/romsel_dsimenutheme/arm9/source/iconTitle.cpp b/romsel_dsimenutheme/arm9/source/iconTitle.cpp index d5aad66ffb..b7f7438edf 100644 --- a/romsel_dsimenutheme/arm9/source/iconTitle.cpp +++ b/romsel_dsimenutheme/arm9/source/iconTitle.cpp @@ -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]) { diff --git a/romsel_r4theme/arm9/source/iconTitle.cpp b/romsel_r4theme/arm9/source/iconTitle.cpp index 8230892ed9..1f465f731e 100644 --- a/romsel_r4theme/arm9/source/iconTitle.cpp +++ b/romsel_r4theme/arm9/source/iconTitle.cpp @@ -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) {