mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 04:15:14 +02:00
Fixed warning for subtly-stupid unused variable.
This commit is contained in:
parent
bec46747dd
commit
5cc87ccc4a
1 changed files with 0 additions and 1 deletions
|
@ -465,7 +465,6 @@ FBXGeometry* OBJReader::readOBJ(QByteArray& model, const QVariantHash& mapping,
|
||||||
|
|
||||||
QMap<QString, int> materialMeshIdMap;
|
QMap<QString, int> materialMeshIdMap;
|
||||||
QVector<FBXMeshPart> fbxMeshParts;
|
QVector<FBXMeshPart> fbxMeshParts;
|
||||||
int meshPartCount = 0;
|
|
||||||
for (int i = 0, meshPartCount = 0; i < mesh.parts.count(); i++, meshPartCount++) {
|
for (int i = 0, meshPartCount = 0; i < mesh.parts.count(); i++, meshPartCount++) {
|
||||||
FBXMeshPart& meshPart = mesh.parts[i];
|
FBXMeshPart& meshPart = mesh.parts[i];
|
||||||
FaceGroup faceGroup = faceGroups[meshPartCount];
|
FaceGroup faceGroup = faceGroups[meshPartCount];
|
||||||
|
|
Loading…
Reference in a new issue