Browse Source

Text objects don't do bold by default. The fonts themselves should be bold.

legacy
Sam Hocevar sam 14 years ago
parent
commit
1dbd80b2a0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/text.cpp

+ 1
- 1
src/text.cpp View File

@@ -65,7 +65,7 @@ void Text::TickDraw(float deltams)
if (data->text)
{
Font *font = Forge::GetFont(data->font);
font->PrintBold(data->pos.x, data->pos.y, data->text);
font->Print(data->pos.x, data->pos.y, data->text);
}
}



Loading…
Cancel
Save