- fixed crash on shutdown.

This commit is contained in:
Christoph Oelckers 2019-10-18 19:11:18 +02:00
parent dab7c43f7c
commit 9f357248e5
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ void FTexture::DeleteHardwareTextures()
decltype(HardwareTextures)::Pair *pair;
while (it.NextPair(pair))
{
delete pair;
delete pair->Value;
}
HardwareTextures.Clear();
}