Fixed Windows warning.

This commit is contained in:
Leonardo Zide 2018-02-17 11:34:15 -08:00
parent f3aba2fea3
commit 247dc0d7a2

View file

@ -1752,6 +1752,8 @@ bool lcPiecesLibrary::LoadTexture(lcTexture* Texture)
sprintf(FileName, "parts/textures/%s.png", Name);
return Texture->Load(mLibraryDir.absoluteFilePath(QLatin1String(FileName)));
#else
return false;
#endif
}
}