Increase array size to supress compiler warning.

This commit is contained in:
Ignacio 2015-12-05 14:50:52 -08:00
parent c0ad0f4d31
commit e9a8630a3f

View File

@ -53,14 +53,14 @@ private:
Vec3 m_principle;
#if SQUISH_USE_SIMD
Vec4 m_unweighted[16];
Vec4 m_unweighted[17];
Vec4 m_metric;
Vec4 m_metricSqr;
Vec4 m_xxsum;
Vec4 m_xsum;
Vec4 m_besterror;
#else
Vec3 m_unweighted[16];
Vec3 m_unweighted[17];
Vec3 m_metric;
Vec3 m_metricSqr;
Vec3 m_xxsum;