From 113a4a55c6a1678f81008f01f6816048fa85d361 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 4 Feb 2017 17:31:11 -0500 Subject: [PATCH] Fix incorrect bit size given for vectors with FindDataMapInfo. --- core/smn_entities.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/smn_entities.cpp b/core/smn_entities.cpp index 885db588..9e6cef80 100644 --- a/core/smn_entities.cpp +++ b/core/smn_entities.cpp @@ -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: {