Merge pull request #1102 from Azaezel/mipmap_emission

extraneous mipmap generation prune
This commit is contained in:
Anis 2016-02-17 19:02:15 +01:00
commit fe5bf90153
2 changed files with 2 additions and 2 deletions

View file

@ -1099,7 +1099,7 @@ void GFXTextureManager::_validateTexParams( const U32 width, const U32 height,
currHeight = 1;
inOutNumMips++;
} while ( currWidth != 1 || currHeight != 1 );
} while ( currWidth != 1 && currHeight != 1 );
}
}
}