Internals: Missing IM_DELETE usage (#1517)

features/sdl_renderer3_multiviewports
omar ago%!(EXTRA string=8 years)
parent 9cda86d55a
commit d976e4ea23
  1. 5
      imgui_draw.cpp

@ -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++)
{ IM_DELETE(Fonts[i]);
Fonts[i]->~ImFont();
ImGui::MemFree(Fonts[i]);
}
Fonts.clear(); Fonts.clear();
} }

Loading…
Cancel
Save