Fix build

This commit is contained in:
mittorn 2017-02-09 22:46:48 +06:00
parent 24fdbf4a01
commit 332a67249f

View File

@ -2241,7 +2241,7 @@ int CRestore::ReadField( void *pBaseData, TYPEDESCRIPTION *pFields, int fieldCou
{
Vector tmp;
memcpy( &tmp, pInputData, sizeof( Vector ) );
tmp += position;
tmp = tmp + position;
memcpy( pOutputData, &tmp, sizeof( Vector ) );
}
#else