Add "Jam with the Band" and remove region check on "WarioWare DIY" in Slot1 Retail Auto detection.

This commit is contained in:
normmatt234 2013-09-28 06:22:23 +00:00
parent eb1f462016
commit 31697c68f8
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ public:
NDS_SLOT1_TYPE selection = NDS_SLOT1_RETAIL_MCROM;
//check game ID in core emulator and select right implementation
if(!memcmp(gameInfo.header.gameCode,"UORE",4) ||
!memcmp(gameInfo.header.gameCode,"UORJ",4))
if(!memcmp(gameInfo.header.gameCode,"UOR",3) || //WarioWare Do It Yourself
!memcmp(gameInfo.header.gameCode,"UXBP",4)) //Jam with the Band
selection = NDS_SLOT1_RETAIL_NAND;
mSelectedImplementation = slot1_List[selection];