Fix incorrect bit size given for vectors with FindDataMapInfo.

This commit is contained in:
Nicholas Hastings
2017-02-07 07:52:00 -05:00
parent 5e4a69def6
commit 113a4a55c6
+2 -2
View File
@@ -823,8 +823,8 @@ static void GuessDataPropTypes(typedescription_t *td, cell_t * pSize, cell_t * p
case FIELD_POSITION_VECTOR:
{
*pType = PropField_Vector;
*pSize = 12;
break;
*pSize = 96;
return;
}
case FIELD_SHORT:
{