Don't log texture cache evictions.

This commit is contained in:
Unknown W. Brackets 2012-11-24 11:00:29 -08:00
parent 11868f26a9
commit 8971ff7e99

View File

@ -88,9 +88,6 @@ void TextureCache_Decimate()
{
if (iter->second.frameCounter + TEXTURE_KILL_AGE < gpuStats.numFrames)
{
TexCacheEntry &entry = iter->second;
NOTICE_LOG(G3D, "Deleted texture %i from %08x: fmt: %i", entry.texture, entry.addr, entry.format);
glDeleteTextures(1, &iter->second.texture);
cache.erase(iter++);
}