core - retail NAND:

- remove "Daigassou! Band Brothers DX (J)" from Slot1 autodetection, doesn't use then NAND flash;
This commit is contained in:
mtabachenko 2013-09-28 08:54:20 +00:00
parent 36ae91938b
commit 624252bf05
2 changed files with 5 additions and 6 deletions

View File

@ -43,13 +43,14 @@ public:
NDS_SLOT1_TYPE selection = NDS_SLOT1_RETAIL_MCROM;
//check game ID in core emulator and select right implementation
if(!memcmp(gameInfo.header.gameCode,"UOR",3) || //WarioWare Do It Yourself
!memcmp(gameInfo.header.gameCode,"UXBP",4)) //Jam with the Band
if ((memcmp(gameInfo.header.gameCode, "UOR", 3) == 0) || // WarioWare - D.I.Y. (U)(E)(EUR) / Made in Ore (J)
(memcmp(gameInfo.header.gameCode, "UXBP", 4) == 0) // Jam with the Band (EUR)
)
selection = NDS_SLOT1_RETAIL_NAND;
mSelectedImplementation = slot1_List[selection];
mSelectedImplementation->connect();
printf("slot1 auto-selected device type: %s\n",mSelectedImplementation->info()->name());
printf("Slot1 auto-selected device type: %s\n",mSelectedImplementation->info()->name());
}

View File

@ -16,12 +16,10 @@
*/
// Games with NAND Flash:
// - Ore/WarioWare D.I.Y. - 128Mbit
// - Daigassou! Band Brothers DX - 64MBit (NAND?)
// Ore/WarioWare D.I.Y. - chip: SAMSUNG 004
// KLC2811ANB-P204
// NTR-UORE-0
// - 128Mbit
#include "../slot1.h"
#include "../registers.h"