diff --git a/NINTV-DS.nds b/NINTV-DS.nds index feb5440..be08054 100644 Binary files a/NINTV-DS.nds and b/NINTV-DS.nds differ diff --git a/arm9/source/config.cpp b/arm9/source/config.cpp index 8f5e6f1..2c3556f 100644 --- a/arm9/source/config.cpp +++ b/arm9/source/config.cpp @@ -206,6 +206,7 @@ static void SetDefaultGameConfig(UINT32 crc) if (crc == 0x10D64E48) myConfig.controller_type = CONTROLLER_P2; // MLB Baseball and Super Pro Baseball use the P2 controller if (crc == 0xDAB36628) myConfig.controller_type = CONTROLLER_P2; // MLB Baseball and Super Pro Baseball use the P2 controller if (crc == 0x650fc1b4) myConfig.controller_type = CONTROLLER_P2; // MLB Baseball and Super Pro Baseball use the P2 controller + if (crc == 0x275F3512) myConfig.controller_type = CONTROLLER_P2; // Turbo uses the P2 controller if (crc == 0xc047d487) myConfig.dpad_config = DPAD_STRICT_4WAY; // Beauty and the Beast is best with Strict 4-way if (crc == 0xD1D352A0) myConfig.dpad_config = DPAD_STRICT_4WAY; // Tower of Doom is best with Strict 4-way diff --git a/arm9/source/overlay.cpp b/arm9/source/overlay.cpp index 468ed8f..e8381a0 100644 --- a/arm9/source/overlay.cpp +++ b/arm9/source/overlay.cpp @@ -391,6 +391,7 @@ struct MapRomToOvl_t MapRomToOvl[] = {0xD1D352A0 , "TOWER", "DOOM", "Tower of Doom.ovl"}, {0x734F3260 , "TRUCKIN", "TRUCKIN", "Truckin.ovl"}, {0x6FA698B3 , "TUTANKHAM", "TUTANKHAM", "Tutankham.ovl"}, + {0x275F3512 , "TURBO", "COLECO", "Turbo.ovl"}, {0x752FD927 , "USCF", "CHESS", "USCF Chess.ovl"}, {0xF9E0789E , "UTOPIA", "UTOPIA", "Utopia.ovl"}, {0xC9624608 , "VANGUARD", "VANGUARD", "Vanguard.ovl"}, diff --git a/extras.zip b/extras.zip index fb2fcdf..4993c5d 100644 Binary files a/extras.zip and b/extras.zip differ