Merge pull request #1734 from carmenfan/master

GetEmbeddedTexture should be a const function
pull/1736/head^2
Kim Kulling 2018-01-24 20:01:48 +01:00 committed by GitHub
commit f80dbe2046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ struct aiScene
}
//! Returns an embedded texture
const aiTexture* GetEmbeddedTexture(const char* filename) {
const aiTexture* GetEmbeddedTexture(const char* filename) const {
const char* shortFilename = GetShortFilename(filename);
for (unsigned int i = 0; i < mNumTextures; i++) {
const char* shortTextureFilename = GetShortFilename(mTextures[i]->mFilename.C_Str());