Merge pull request #9 from diamante0018/skip_specops_entities

Remove function again
This commit is contained in:
Edoardo Sanguineti 2021-07-28 19:16:55 +02:00 committed by GitHub
commit af737c98f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -380,19 +380,12 @@ namespace Components
}
}
template <typename T> std::function <T> ImportFunction(const std::string& dll, const std::string& function)
{
auto dllHandle = GetModuleHandleA(&dll[0]);
auto procAddr = GetProcAddress(dllHandle, &function[0]);
return std::function <T>(reinterpret_cast<T*>(procAddr));
}
bool QuickPatch::IsDynClassnameStub(char* a1)
{
auto version = Zones::GetEntitiesZoneVersion();
if (version >= VERSION_LATEST_CODO) {
if (version >= VERSION_LATEST_CODO)
{
for (auto i = 0; i < Game::spawnVars->numSpawnVars; i++)
{
char** kvPair = Game::spawnVars->spawnVars[i];