From 31697c68f81a872fe7c0c255e2b25046e8359cfd Mon Sep 17 00:00:00 2001 From: normmatt234 Date: Sat, 28 Sep 2013 06:22:23 +0000 Subject: [PATCH] Add "Jam with the Band" and remove region check on "WarioWare DIY" in Slot1 Retail Auto detection. --- desmume/src/addons/slot1_retail_auto.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desmume/src/addons/slot1_retail_auto.cpp b/desmume/src/addons/slot1_retail_auto.cpp index ecb99a15f..7ca3721d6 100644 --- a/desmume/src/addons/slot1_retail_auto.cpp +++ b/desmume/src/addons/slot1_retail_auto.cpp @@ -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];