Fonts: Fixed various small warnings / build issues.

This commit is contained in:
ocornut
2025-03-05 18:42:41 +01:00
parent dec8d3863a
commit 93410c47e1
3 changed files with 10 additions and 5 deletions

View File

@@ -16670,7 +16670,7 @@ void ImGui::DebugNodeFontGlyph(ImFont* font, const ImFontGlyph* glyph)
if (glyph->PackId >= 0)
{
ImFontAtlasRect* r = ImFontAtlasPackGetRect(font->ContainerAtlas, glyph->PackId);
Text("PackId: %d (%dx%d rect at %d,%d)", glyph->PackId, r->w, r->h, r->x, r->y);;
Text("PackId: %d (%dx%d rect at %d,%d)", glyph->PackId, r->w, r->h, r->x, r->y);
}
}