We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008f4dd commit a0bfb46Copy full SHA for a0bfb46
Exporters/ExportGLTF.cpp
@@ -1043,7 +1043,6 @@ void ExportStaticMeshGLTF(const CStaticMesh* Mesh)
1043
1044
int MaxLod = (GExportLods) ? Mesh->Lods.Num() : 1;
1045
for (int Lod = 0; Lod < MaxLod; Lod++)
1046
- for (int Lod = 0; Lod < MaxLod; Lod++)
1047
{
1048
char suffix[32];
1049
suffix[0] = 0;
build.sh
@@ -115,7 +115,7 @@ function DetectBuildPlatform()
115
else
116
PLATFORM="linux32"
117
fi
118
- elif [ "$OSTYPE" == "darwin"* ]; then
+ elif [[ "$OSTYPE" == "darwin"* ]]; then
119
PLATFORM=osx
120
121
[ "$PLATFORM" ] || PLATFORM="vc-win32"
0 commit comments