fix Keyframe size calculation

This commit is contained in:
Gered 2012-12-21 19:02:07 -05:00
parent cc141ac0ca
commit c3cea06a2d

View file

@ -33,8 +33,8 @@ inline uint32_t Keyframe::GetSize() const
{
uint32_t singleJointFrameSize = 0;
singleJointFrameSize += (sizeof(float) * 3) * 3; // position (xyz)
singleJointFrameSize += (sizeof(float) * 3) * 3; // rotation (xyz)
singleJointFrameSize += sizeof(float) * 3; // position (xyz)
singleJointFrameSize += sizeof(float) * 3; // rotation (xyz)
uint32_t size = 0;