- Tekken 7: Improve vanilla version
Tekken 7: fix\workaround some crashes in Tekken 7 vanilla (without patch, first version(?))
This commit is contained in:
parent
838684d886
commit
ea9636728e
@ -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"]))
|
||||
{
|
||||
|
@ -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"]))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user