mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-28 23:53:15 +02:00
Fix stupid crash on fallback glyph handling (ttf branch)
This commit is contained in:
@ -6550,7 +6550,8 @@ const ImFont::Glyph* ImFont::FindGlyph(unsigned short c) const
|
|||||||
if (c < (int)IndexLookup.size())
|
if (c < (int)IndexLookup.size())
|
||||||
{
|
{
|
||||||
const int i = IndexLookup[c];
|
const int i = IndexLookup[c];
|
||||||
return &Glyphs[i];
|
if (i != -1)
|
||||||
|
return &Glyphs[i];
|
||||||
}
|
}
|
||||||
return FallbackGlyph;
|
return FallbackGlyph;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user