This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Text objects don't do bold by default. The fonts themselves should be bold.
legacy
Sam Hocevar
sam
14 years ago
parent
fa1cc51d97
commit
1dbd80b2a0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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->Print
Bold
(data->pos.x, data->pos.y, data->text);
font->Print(data->pos.x, data->pos.y, data->text);
}
}
Write
Preview
Loading…
Cancel
Save