Browse Source

Fix build

pull/1/head
mittorn 8 years ago
parent
commit
55a3ab741a
  1. 2
      dlls/util.cpp

2
dlls/util.cpp

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

Loading…
Cancel
Save