diff --git a/quickmenu/arm9/source/iconTitle.cpp b/quickmenu/arm9/source/iconTitle.cpp index 23d16a7ebf..c77a782fe5 100644 --- a/quickmenu/arm9/source/iconTitle.cpp +++ b/quickmenu/arm9/source/iconTitle.cpp @@ -517,6 +517,11 @@ void getGameInfo(int num, bool isDir, const char* name, bool fromArgv) && arm9StartSig[3] == 0xE3500000) { isHomebrew[num] = false; isModernHomebrew[num] = false; + } else + if (arm9StartSig[2] == 0xEAFFFFFF // SDK 4 (HM DS Cute) + && arm9StartSig[3] == 0xE1DC00B6) { + isHomebrew[num] = false; + isModernHomebrew[num] = false; } } else if (strncmp(gameTid[num], "HNA", 3) == 0) { // Modcrypted diff --git a/romsel_aktheme/arm9/source/iconTitle.cpp b/romsel_aktheme/arm9/source/iconTitle.cpp index 9abc507db6..e061478070 100644 --- a/romsel_aktheme/arm9/source/iconTitle.cpp +++ b/romsel_aktheme/arm9/source/iconTitle.cpp @@ -1214,6 +1214,11 @@ void getGameInfo(int num, bool isDir, const char* name, bool fromArgv) && arm9StartSig[3] == 0xE3500000) { isHomebrew[num] = false; isModernHomebrew[num] = false; + } else + if (arm9StartSig[2] == 0xEAFFFFFF // SDK 4 (HM DS Cute) + && arm9StartSig[3] == 0xE1DC00B6) { + isHomebrew[num] = false; + isModernHomebrew[num] = false; } } else if (strncmp(gameTid[num], "HNA", 3) == 0) { // Modcrypted diff --git a/romsel_dsimenutheme/arm9/source/iconTitle.cpp b/romsel_dsimenutheme/arm9/source/iconTitle.cpp index 4e95ca4938..ed095f4ac8 100644 --- a/romsel_dsimenutheme/arm9/source/iconTitle.cpp +++ b/romsel_dsimenutheme/arm9/source/iconTitle.cpp @@ -476,6 +476,11 @@ void getGameInfo(bool isDir, const char *name, int num, bool fromArgv) { && arm9StartSig[3] == 0xE3500000) { isHomebrew[num] = false; isModernHomebrew[num] = false; + } else + if (arm9StartSig[2] == 0xEAFFFFFF // SDK 4 (HM DS Cute) + && arm9StartSig[3] == 0xE1DC00B6) { + isHomebrew[num] = false; + isModernHomebrew[num] = false; } } else if (strncmp(gameTid[num], "HNA", 3) == 0) { // Modcrypted diff --git a/romsel_r4theme/arm9/source/iconTitle.cpp b/romsel_r4theme/arm9/source/iconTitle.cpp index 54b7b80e50..1282b7e49b 100644 --- a/romsel_r4theme/arm9/source/iconTitle.cpp +++ b/romsel_r4theme/arm9/source/iconTitle.cpp @@ -1160,6 +1160,11 @@ void getGameInfo(bool isDir, const char* name, bool fromArgv) && arm9StartSig[3] == 0xE3500000) { isHomebrew = false; isModernHomebrew = false; + } else + if (arm9StartSig[2] == 0xEAFFFFFF // SDK 4 (HM DS Cute) + && arm9StartSig[3] == 0xE1DC00B6) { + isHomebrew = false; + isModernHomebrew = false; } } else if (strncmp(gameTid, "HNA", 3) == 0) { // Modcrypted