Add a missing Invalidate() call in ~TextureCache(). Fixes a regression from 8bed27a3d1
causing textures to load improperly when a game is run two times in the same Dolphin instance
This commit is contained in:
parent
05ae006e18
commit
b27d8ff0d6
|
@ -74,6 +74,7 @@ void TextureCache::Invalidate()
|
||||||
|
|
||||||
TextureCache::~TextureCache()
|
TextureCache::~TextureCache()
|
||||||
{
|
{
|
||||||
|
Invalidate();
|
||||||
if (temp)
|
if (temp)
|
||||||
{
|
{
|
||||||
FreeAlignedMemory(temp);
|
FreeAlignedMemory(temp);
|
||||||
|
|
Loading…
Reference in New Issue