1
0
mirror of synced 2025-02-01 04:15:50 +01:00

Added Otushu DX to TP, will add xml shortly

This commit is contained in:
EmuAl 2022-01-09 10:33:17 +00:00
parent f6a55f9838
commit d2b417c7be
3 changed files with 11 additions and 0 deletions

View File

@ -1144,6 +1144,13 @@ static InitFunction initKasioriTestFunc([]()
}, GameID::Kasiori);
static InitFunction initOtushuDXTestFunc([]()
{
HookAPM3(L"SDGF");
__int64 mainModuleBase = (__int64)GetModuleHandle(0);
}, GameID::OtushuDX);
#else

View File

@ -780,6 +780,9 @@ void GameDetect::DetectCurrentGame()
case 0x5451ddfd:
SetGameId(GameID::Kasiori, "Kasiori");
break;
case 0x714d4700:
SetGameId(GameID::OtushuDX, "Otushu DX");
break;
#endif
default:

View File

@ -136,4 +136,5 @@ enum class GameID
Pengoe512,
KoihimeEnbuAPM3,
UnderNightAPM3,
OtushuDX,
};