mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
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:
@@ -534,13 +534,19 @@ void NdsLoader::LoadFirmwareUserSettings()
|
|||||||
|
|
||||||
bool NdsLoader::ShouldAttemptDldiPatch()
|
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)
|
switch (_romHeader.ntrHeader.gameCode)
|
||||||
{
|
{
|
||||||
// Final Fantasy IV contains a fake dldi header to trick flashcards
|
// Final Fantasy IV
|
||||||
// See also: https://shutterbug2000.github.io/very-clever/
|
|
||||||
case GAMECODE("YF4P"):
|
case GAMECODE("YF4P"):
|
||||||
case GAMECODE("YF4E"):
|
case GAMECODE("YF4E"):
|
||||||
case GAMECODE("YF4J"):
|
case GAMECODE("YF4J"):
|
||||||
|
// Final Fantasy Crystal Chronicles - Ring of Fates
|
||||||
|
case GAMECODE("AFXE"):
|
||||||
|
case GAMECODE("AFXP"):
|
||||||
|
// Nanashi no Geemu
|
||||||
|
case GAMECODE("YFQJ"):
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user