- refraing from using magic numbers like 0xffffffff all over the repository, rather use UINT_MAX/SIZE_MAX ..
- minor re-formatting and refactoring at some old code spots. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@970 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
@@ -225,7 +225,7 @@ void Q3DImporter::InternReadFile( const std::string& pFile,
|
||||
if (!i && !a)
|
||||
mesh.prevUVIdx = vec.uvindices[a];
|
||||
else if (vec.uvindices[a] != mesh.prevUVIdx)
|
||||
mesh.prevUVIdx = 0xffffffff;
|
||||
mesh.prevUVIdx = UINT_MAX;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user