1
0
mirror of synced 2025-01-20 01:32:51 +01:00

- Tekken 7: Improve vanilla version

Tekken 7: fix\workaround some crashes in Tekken 7 vanilla (without patch, first version(?))
This commit is contained in:
Nezarn 2020-06-16 14:14:50 +02:00
parent 838684d886
commit ea9636728e
2 changed files with 5 additions and 1 deletions

View File

@ -64,6 +64,10 @@ static InitFunction Tekken7Update00Func([]()
// First Check Error
injector::MakeNOP(imageBase + 0x17B400, 5);
// workaround string out of range crash
// still wrong, but at least no crash
injector::WriteMemory<BYTE>(imageBase + 0x102C34, 0xEB, true);
// Windowed
if (ToBool(config["General"]["Windowed"]))
{

View File

@ -241,7 +241,7 @@ extern linb::ini config;
static InitFunction initFunc([]()
{
if (GameDetect::currentGame == GameID::PokkenTournament || GameDetect::currentGame == GameID::SchoolOfRagnarok || GameDetect::currentGame == GameID::TER)
if (GameDetect::currentGame == GameID::PokkenTournament || GameDetect::currentGame == GameID::SchoolOfRagnarok || GameDetect::currentGame == GameID::TER || GameDetect::currentGame == GameID::Tekken7Update00)
return;
if (ToBool(config["General"]["Windowed"]))
{