From c6d1a738549a7997ff1d3e633cf0708195fa8e45 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Wed, 12 Jun 2013 09:01:05 -0400 Subject: [PATCH] Fix a logging message and a comment --- code/ASEParser.cpp | 2 +- include/assimp/config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/ASEParser.cpp b/code/ASEParser.cpp index 04cd871ff..b1bee0461 100644 --- a/code/ASEParser.cpp +++ b/code/ASEParser.cpp @@ -1567,8 +1567,8 @@ void Parser::ParseLV4MeshBones(unsigned int iNumBones,ASE::Mesh& mesh) unsigned int iIndex = strtoul10(filePtr,&filePtr); if (iIndex >= iNumBones) { - continue; LogWarning("Bone index is out of bounds"); + continue; } if (!ParseString(mesh.mBones[iIndex].mName,"*MESH_BONE_NAME")) SkipToNextToken(); diff --git a/include/assimp/config.h b/include/assimp/config.h index 45a3c340e..c1694c94c 100644 --- a/include/assimp/config.h +++ b/include/assimp/config.h @@ -403,7 +403,7 @@ enum aiComponent * use the #aiProcess_OptimizeGraph step to do this */ aiComponent_LIGHTS = 0x100, - /** Removes all light sources (aiScene::mCameras). + /** Removes all cameras (aiScene::mCameras). * The corresponding scenegraph nodes are NOT removed. * use the #aiProcess_OptimizeGraph step to do this */ aiComponent_CAMERAS = 0x200,