Delete an unused buffer, saving 0.5MB of RAM.

This commit is contained in:
Henrik Rydgård 2020-08-28 10:38:00 +02:00
parent 8f4fb89d17
commit 41fe6f9e12
2 changed files with 0 additions and 2 deletions

View file

@ -115,7 +115,6 @@ TextureCacheCommon::TextureCacheCommon(Draw::DrawContext *draw)
// These buffers will grow if necessary, but most won't need more than this.
tmpTexBuf32_.resize(512 * 512); // 1MB
tmpTexBuf16_.resize(512 * 512); // 0.5MB
tmpTexBufRearrange_.resize(512 * 512); // 1MB
replacer_.Init();

View file

@ -331,7 +331,6 @@ protected:
std::map<u32, int> videos_;
SimpleBuf<u32> tmpTexBuf32_;
SimpleBuf<u16> tmpTexBuf16_;
SimpleBuf<u32> tmpTexBufRearrange_;
TexCacheEntry *nextTexture_;