From f438652df861d7f7176169da7361b1e6dd6987d8 Mon Sep 17 00:00:00 2001 From: Giuseppe Barbieri Date: Mon, 16 Jan 2017 21:04:24 +0100 Subject: [PATCH] Update PlyLoader.cpp --- code/PlyLoader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/PlyLoader.cpp b/code/PlyLoader.cpp index 11c5cb474..45fbe6187 100644 --- a/code/PlyLoader.cpp +++ b/code/PlyLoader.cpp @@ -751,7 +751,7 @@ void PLYImporter::LoadFaces(std::vector* pvOut) // index of the vertex index list unsigned int iProperty = 0xFFFFFFFF; PLY::EDataType eType = EDT_Char; - bool bIsTristrip = false; + bool bIsTriStrip = false; // index of the material index property unsigned int iMaterialIndex = 0xFFFFFFFF; @@ -802,7 +802,7 @@ void PLYImporter::LoadFaces(std::vector* pvOut) if (!(*a).bIsList)continue; iProperty = _a; bOne = true; - bIsTristrip = true; + bIsTriStrip = true; eType = (*a).eType; break; } @@ -812,7 +812,7 @@ void PLYImporter::LoadFaces(std::vector* pvOut) // check whether we have at least one per-face information set if (pcList && bOne) { - if (!bIsTristrip) + if (!bIsTriStrip) { pvOut->reserve(pcList->alInstances.size()); for (std::vector::const_iterator i = pcList->alInstances.begin();