Browse Source

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

Jared Mulconry 8 years ago
parent
commit
335003a5a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/LWSLoader.cpp

+ 1 - 1
code/LWSLoader.cpp

@@ -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);
     }