mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
Small crash fix
Crash fix when font isn't set.
This commit is contained in:
parent
77b9600303
commit
d0972c9be1
|
|
@ -602,6 +602,8 @@ void GuiControl::setUpdate()
|
|||
void GuiControl::renderJustifiedText(Point2I offset, Point2I extent, const char *text)
|
||||
{
|
||||
GFont *font = mProfile->mFont;
|
||||
if(!font)
|
||||
return;
|
||||
S32 textWidth = font->getStrWidthPrecise((const UTF8*)text);
|
||||
U32 textHeight = font->getHeight();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue