|
@@ -1403,10 +1403,7 @@ void ImFontAtlas::ClearTexData()
|
|
void ImFontAtlas::ClearFonts()
|
|
void ImFontAtlas::ClearFonts()
|
|
{
|
|
{
|
|
for (int i = 0; i < Fonts.Size; i++)
|
|
for (int i = 0; i < Fonts.Size; i++)
|
|
- {
|
|
|
|
- Fonts[i]->~ImFont();
|
|
|
|
- ImGui::MemFree(Fonts[i]);
|
|
|
|
- }
|
|
|
|
|
|
+ IM_DELETE(Fonts[i]);
|
|
Fonts.clear();
|
|
Fonts.clear();
|
|
}
|
|
}
|
|
|
|
|