library: fix saverestore offsets code from old engine

This commit is contained in:
mittorn 2020-02-08 22:41:47 +07:00
parent 538d8a6fb4
commit 070272489d

View File

@ -39,8 +39,8 @@ void COM_PushLibraryError( const char *error )
void *COM_FunctionFromName_SR( void *hInstance, const char *pName )
{
#ifdef XASH_ALLOW_SAVERESTORE_OFFSETS
if( !Q_memcmp( pName, "ofs:",4 ) )
return svgame.dllFuncs.pfnGameInit + Q_atoi(pName + 4);
if( !memcmp( pName, "ofs:",4 ) )
return (byte*)svgame.dllFuncs.pfnGameInit + Q_atoi(pName + 4);
#endif
return COM_FunctionFromName( hInstance, pName );
}