Fixed build warnings on MSVC14 x64 in the LWS format sources.

pull/1083/head
Jared Mulconry 2016-11-20 02:03:53 +11:00
parent 2c93e29dcc
commit 335003a5a3
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ void LWSImporter::InternReadFile( const std::string& pFile, aiScene* pScene,
anim->mTicksPerSecond = fps;
anim->mDuration = last-(first-1); /* fixme ... zero or one-based?*/
anim->mChannels = new aiNodeAnim*[anim->mNumChannels = anims.size()];
anim->mChannels = new aiNodeAnim*[anim->mNumChannels = static_cast<unsigned int>(anims.size())];
std::copy(anims.begin(),anims.end(),anim->mChannels);
}