mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 06:53:00 +02:00
Fix warning
This commit is contained in:
parent
d1df6854ac
commit
2cf2257783
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ void writeRecordingToFile(RecordingPointer recording, const QString& filename) {
|
||||||
// 2 fields per joints
|
// 2 fields per joints
|
||||||
mask.resize(mask.size() + numJoints * 2);
|
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];
|
const auto& joint = jointArray[j];
|
||||||
if (joint.rotationSet) {
|
if (joint.rotationSet) {
|
||||||
writeQuat(stream, joint.rotation);
|
writeQuat(stream, joint.rotation);
|
||||||
|
|
Loading…
Reference in a new issue