1
0
mirror of synced 2024-11-15 07:17:35 +01:00

Add initial support for Mario Bros 4

This commit is contained in:
Nico Giansanti 2019-01-25 20:00:00 +02:00
parent 5fed723a91
commit 92bfc30a3a
2 changed files with 7 additions and 1 deletions

View File

@ -223,6 +223,10 @@ void GameDetect::DetectCurrentGame()
case 0x2B41A7EA:
currentGame = GameID::SR3;
break;
case 0x42b00124:
currentGame = GameID::MB4;
X2Type = X2Type::Generic;
break;
case 0x47da80e5: // Spica Adventure
currentGame = GameID::SpicaAdventure;
X2Type = X2Type::Generic;
@ -446,6 +450,7 @@ bool GameDetect::IsTypeX()
case GameID::BG4:
case GameID::RaidenIV:
case GameID::VirtuaRLimit:
case GameID::MB4:
return true;
default:
return false;

View File

@ -45,5 +45,6 @@ enum class GameID
WMMT5,
MagicalBeat,
CrimzonClover,
Daytona3
Daytona3,
MB4
};