Adding back in fix for convex hull size incompatibility after backout of previous checkin.

master
Jonathan Wolk 2010-10-26 11:20:48 -07:00
parent 0a8d43e844
commit 57cbcdc9ec
1 changed files with 1 additions and 3 deletions

View File

@ -1449,9 +1449,7 @@ LLSD LLModel::writeModel(
{
U32 size = decomp[i].size();
total += size;
// The valid range of sizes is actually 3-256 verts. We need this to fit into a U8,
// So we just subtract 1
hulls[i] = (U8) (size - 1);
hulls[i] = (U8) (size);
for (U32 j = 0; j < decomp[i].size(); ++j)
{