Remove function again

This commit is contained in:
Diavolo 2021-07-28 19:15:47 +02:00
parent 2dd703c037
commit 4db1c1b0a9
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5

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];