mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-29 11:20:40 +00:00
Don't log texture cache evictions.
This commit is contained in:
parent
11868f26a9
commit
8971ff7e99
@ -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++);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user