1
0
mirror of synced 2025-01-21 01:58:52 +01:00

WMMT5 Open Parrot Loader

Including all research, saving and stuff. Please improve!
This commit is contained in:
Reaver 2018-09-14 16:31:10 +03:00
parent d0799deaa7
commit df72875f11
4 changed files with 1142 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -337,6 +337,18 @@ void GameDetect::DetectCurrentGame()
currentGame = GameID::PokkenTournament;
break;
}
// PATCHES 0-9
if (*(uint32_t*)(moduleBase + 0x2F00) == 0xFFCB8B48)
{
currentGame = GameID::WMMT5;
break;
}
// PATCHES 10-21
if (*(uint32_t*)(moduleBase + 0x2F00) == 0x084AFF48)
{
currentGame = GameID::WMMT5;
break;
}
#endif
#ifdef _DEBUG

View File

@ -41,5 +41,6 @@ enum class GameID
PokkenTournament,
ExBoardGeneric,
GrooveCoaster2,
PuzzleBobble
PuzzleBobble,
WMMT5
};