mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-22 05:22:32 +01:00
Fix for old FLA
This commit is contained in:
parent
07d994cc3e
commit
ebd4732411
@ -10,6 +10,10 @@ void FLAUtils::Init()
|
||||
HMODULE hFLA = GetModuleHandle(TEXT("$fastman92limitAdjuster.asi"));
|
||||
if ( hFLA != nullptr )
|
||||
{
|
||||
GetExtendedIDFunc = reinterpret_cast<decltype(GetExtendedIDFunc)>(GetProcAddress( hFLA, "GetExtendedIDfrom16bitBefore" ));
|
||||
auto function = reinterpret_cast<decltype(GetExtendedIDFunc)>(GetProcAddress( hFLA, "GetExtendedIDfrom16bitBefore" ));
|
||||
if ( function != nullptr )
|
||||
{
|
||||
GetExtendedIDFunc = function;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user