Browse Source

reduced the scope of iStep variable

iamAdrianIusca 5 năm trước cách đây
mục cha
commit
6f1870681b
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      code/Obj/ObjFileParser.cpp

+ 2 - 2
code/Obj/ObjFileParser.cpp

@@ -431,9 +431,9 @@ void ObjFileParser::getFace( aiPrimitiveType type ) {
 
     const bool vt = (!m_pModel->m_TextureCoord.empty());
     const bool vn = (!m_pModel->m_Normals.empty());
-    int iStep, iPos = 0;
+    int iPos = 0;
     while ( m_DataIt != m_DataItEnd ) {
-        iStep = 1;
+        int iStep = 1;
 
         if ( IsLineEnd( *m_DataIt ) ) {
             break;