Update FBXConverter.cpp

Replaces a 0 by nullptr.
pull/1988/head
Kim Kulling 2018-05-31 20:18:17 +02:00 committed by GitHub
parent ffb6756d2a
commit 31e75b9d54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1532,7 +1532,7 @@ aiString Converter::GetTexturePath(const Texture* tex)
path.Set(tex->RelativeFilename()); path.Set(tex->RelativeFilename());
const Video* media = tex->Media(); const Video* media = tex->Media();
if (media != 0) { if (media != nullptr) {
bool textureReady = false; //tells if our texture is ready (if it was loaded or if it was found) bool textureReady = false; //tells if our texture is ready (if it was loaded or if it was found)
unsigned int index; unsigned int index;