Fix incorrect bit size given for vectors with FindDataMapInfo.

This commit is contained in:
Nicholas Hastings 2017-02-04 17:31:11 -05:00
parent 5e4a69def6
commit 113a4a55c6

View File

@ -823,8 +823,8 @@ static void GuessDataPropTypes(typedescription_t *td, cell_t * pSize, cell_t * p
case FIELD_POSITION_VECTOR: case FIELD_POSITION_VECTOR:
{ {
*pType = PropField_Vector; *pType = PropField_Vector;
*pSize = 12; *pSize = 96;
break; return;
} }
case FIELD_SHORT: case FIELD_SHORT:
{ {