mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-06 14:05:08 +00:00
Fix stupid crash on fallback glyph handling (ttf branch)
This commit is contained in:
parent
6c6d1746d4
commit
188165a063
1 changed files with 2 additions and 1 deletions
|
@ -6550,7 +6550,8 @@ const ImFont::Glyph* ImFont::FindGlyph(unsigned short c) const
|
|||
if (c < (int)IndexLookup.size())
|
||||
{
|
||||
const int i = IndexLookup[c];
|
||||
return &Glyphs[i];
|
||||
if (i != -1)
|
||||
return &Glyphs[i];
|
||||
}
|
||||
return FallbackGlyph;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue