mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-04 15:06:25 +00:00
Fix another Qt memory leak
This commit is contained in:
parent
903abe8779
commit
d30f1c2019
@ -140,6 +140,12 @@ void TextDrawerQt::ClearCache() {
|
||||
}
|
||||
cache_.clear();
|
||||
sizeCache_.clear();
|
||||
// Also wipe the font map.
|
||||
for (auto iter : fontMap_) {
|
||||
delete iter.second;
|
||||
}
|
||||
fontMap_.clear();
|
||||
fontHash_ = 0;
|
||||
}
|
||||
|
||||
void TextDrawerQt::DrawStringRect(DrawBuffer &target, const char *str, const Bounds &bounds, uint32_t color, int align) {
|
||||
|
Loading…
Reference in New Issue
Block a user