Fix warning

This commit is contained in:
samcake 2015-11-10 09:20:43 -08:00
parent d1df6854ac
commit 2cf2257783

View file

@ -236,7 +236,7 @@ void writeRecordingToFile(RecordingPointer recording, const QString& filename) {
// 2 fields per joints
mask.resize(mask.size() + numJoints * 2);
}
for (int j = 0; j < numJoints; j++) {
for (quint32 j = 0; j < numJoints; j++) {
const auto& joint = jointArray[j];
if (joint.rotationSet) {
writeQuat(stream, joint.rotation);