This commit is contained in:
parent
ddfe3cd3cc
commit
31104a7537
@ -23,8 +23,18 @@ namespace Components
|
||||
}
|
||||
}
|
||||
|
||||
int FileSystem::ExecIsFSStub(const char* execFilename)
|
||||
{
|
||||
return !File(execFilename).Exists();
|
||||
}
|
||||
|
||||
FileSystem::FileSystem()
|
||||
{
|
||||
// Filesystem config checks
|
||||
Utils::Hook(0x6098FD, FileSystem::ExecIsFSStub, HOOK_CALL).Install()->Quick();
|
||||
|
||||
// exec whitelist removal (YAYFINITY WARD)
|
||||
Utils::Hook::Nop(0x609685, 5);
|
||||
Utils::Hook::Nop(0x60968C, 2);
|
||||
}
|
||||
}
|
||||
|
@ -23,5 +23,8 @@ namespace Components
|
||||
|
||||
FileSystem();
|
||||
const char* GetName() { return "FileSystem"; };
|
||||
|
||||
private:
|
||||
static int ExecIsFSStub(const char* execFilename);
|
||||
};
|
||||
}
|
||||
|
@ -272,7 +272,6 @@ namespace Components
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Dvar::Var("xblive_privatematch").Set(1);
|
||||
Game::Menus_CloseAll(Game::uiContext);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user