Added more game codes to DLDI blacklist. Fixes Final Fantasy Crystal Chronicles - Ring of Fates (EU and US) and Nanashi no Geemu. Fixes #17

This commit is contained in:
Gericom
2025-12-02 19:14:59 +01:00
parent 485598ab79
commit 8761081c73

View File

@@ -534,13 +534,19 @@ void NdsLoader::LoadFirmwareUserSettings()
bool NdsLoader::ShouldAttemptDldiPatch()
{
// Some games contain a fake dldi header to trick flashcards
// See also: https://shutterbug2000.github.io/very-clever/
switch (_romHeader.ntrHeader.gameCode)
{
// Final Fantasy IV contains a fake dldi header to trick flashcards
// See also: https://shutterbug2000.github.io/very-clever/
// Final Fantasy IV
case GAMECODE("YF4P"):
case GAMECODE("YF4E"):
case GAMECODE("YF4J"):
// Final Fantasy Crystal Chronicles - Ring of Fates
case GAMECODE("AFXE"):
case GAMECODE("AFXP"):
// Nanashi no Geemu
case GAMECODE("YFQJ"):
{
return false;
}