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

Merge pull request #194 from EmuAl/master

Added Otoshu DX to TP
This commit is contained in:
Nezarn 2022-01-11 16:08:25 +01:00 committed by GitHub
commit 1c6dd70d1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,
};