1
0
mirror of synced 2025-02-22 13:09:57 +01:00

Add Support Dengeki Bunko: Fighting Climax

Add Support Dengeki Bunko: Fighting Climax
This commit is contained in:
Reaver 2021-11-16 00:38:52 +02:00
parent d8417936ea
commit 167cb87ee8
3 changed files with 14 additions and 1 deletions

View File

@ -1215,4 +1215,12 @@ static InitFunction initFuncBlazBlueCrossTagBattle([]()
}, GameID::BlazBlueCrossTagBattle); }, GameID::BlazBlueCrossTagBattle);
static InitFunction initFuncDengekiBunkoFC([]()
{
HookAPM3(L"SDGC");
DWORD_PTR mainModuleBase = (DWORD_PTR)GetModuleHandle(0);
}, GameID::DengekiBunkoFC);
#endif #endif

View File

@ -647,6 +647,10 @@ void GameDetect::DetectCurrentGame()
case 0xb1cb5260: case 0xb1cb5260:
SetGameId(GameID::BlazBlueCrossTagBattle, "BLAZBLUE CROSS TAG BATTLE"); SetGameId(GameID::BlazBlueCrossTagBattle, "BLAZBLUE CROSS TAG BATTLE");
break; break;
case 0x4ce7fa35:
case 0xcf741456: // Update 1
SetGameId(GameID::DengekiBunkoFC, "Dengeki Bunko: Fighting Climax");
break;
#endif #endif
#ifdef _AMD64_ #ifdef _AMD64_
case 0xf322d053: case 0xf322d053:

View File

@ -130,5 +130,6 @@ enum class GameID
NosferatuLilinor, NosferatuLilinor,
Kasiori, Kasiori,
GGXRd, GGXRd,
BlazBlueCrossTagBattle BlazBlueCrossTagBattle,
DengekiBunkoFC
}; };