1
0
mirror of synced 2024-11-14 23:07:36 +01:00

Add Guilty Gear Strive

Guilty Gear Strive boots
This commit is contained in:
Nico Giansanti 2021-08-26 18:29:15 +03:00
parent 0eac7490ee
commit d37febc910
3 changed files with 12 additions and 1 deletions

View File

@ -852,6 +852,14 @@ static InitFunction initDoa6FM14Func([]()
}, GameID::Doa6FM14);
static InitFunction initGGSFunc([]()
{
HookAPM3();
wcscpy(APM3GameId, L"SDGM");
__int64 mainModuleBase = (__int64)GetModuleHandle(0);
}, GameID::GGS);
static InitFunction initDoa6TestFunc([]()
{

View File

@ -695,6 +695,8 @@ void GameDetect::DetectCurrentGame()
case 0x0e285533: // FM13 Test
SetGameId(GameID::Doa6Test, "Dead or Alive 6 Test Generic");
break;
case 0xd0a6afbd: // GGS
SetGameId(GameID::GGS, "Guilty Gear Strive");
#endif
default:
#ifdef _DEBUG

View File

@ -112,5 +112,6 @@ enum class GameID
Doa6FM13,
Doa6FM14,
Doa6Test,
WMMT5DXPlus
WMMT5DXPlus,
GGS
};