glTF: usage of (hopefully) correct data type for size types: closes https://github.com/assimp/assimp/issues/723

This commit is contained in:
Kim Kulling
2015-12-27 20:36:54 +01:00
parent 9409ce3b56
commit 22f7f60ba0
2 changed files with 11 additions and 5 deletions

View File

@@ -378,11 +378,10 @@ void ObjFileMtlImporter::getTexture() {
* Because aiMaterial supports clamp option, so we also want to return it
* /////////////////////////////////////////////////////////////////////////////
*/
void ObjFileMtlImporter::getTextureOption(bool &clamp, int &clampIndex, aiString *&out)
{
void ObjFileMtlImporter::getTextureOption(bool &clamp, int &clampIndex, aiString *&out) {
m_DataIt = getNextToken<DataArrayIt>(m_DataIt, m_DataItEnd);
//If there is any more texture option
// If there is any more texture option
while (!isEndOfBuffer(m_DataIt, m_DataItEnd) && *m_DataIt == '-')
{
const char *pPtr( &(*m_DataIt) );