1
0
mirror of synced 2024-11-14 23:07:36 +01:00
This commit is contained in:
Aaron M 2021-08-11 17:15:40 +12:00
commit 426039f8c4
3 changed files with 21 additions and 1 deletions

View File

@ -843,4 +843,12 @@ static InitFunction initPuyoFunc([]()
__int64 mainModuleBase = (__int64)GetModuleHandle(0); __int64 mainModuleBase = (__int64)GetModuleHandle(0);
}, GameID::PuyoPuyoEsports); }, GameID::PuyoPuyoEsports);
static InitFunction initDoa6FM14Func([]()
{
HookAPM3();
wcscpy(APM3GameId, L"SDFM");
__int64 mainModuleBase = (__int64)GetModuleHandle(0);
}, GameID::Doa6FM14);
#endif #endif

View File

@ -671,6 +671,13 @@ void GameDetect::DetectCurrentGame()
case 0x9c7bb2e1: // Ver 11 TEST case 0x9c7bb2e1: // Ver 11 TEST
currentGame = GameID::TappingSkillTest; currentGame = GameID::TappingSkillTest;
break; break;
case 0x0bad58c2: // FM14
case 0x65753fe4: // FM13
case 0xd7028acd: // FM12
case 0xf9df097f: // FM11
case 0x03577d43: // FM10
currentGame = GameID::Doa6FM14;
break;
#endif #endif
default: default:
#ifdef _DEBUG #ifdef _DEBUG

View File

@ -105,5 +105,10 @@ enum class GameID
SFV, SFV,
TappingSkillTest, TappingSkillTest,
Pengoe511, Pengoe511,
VF5EsportsTest VF5EsportsTest,
Doa6FM10,
Doa6FM11,
Doa6FM12,
Doa6FM13,
Doa6FM14
}; };