Skip to content

Commit aa31e3c

Browse files
committedFeb 21, 2015
Use skin font for usernames (fixes #2363)
1 parent cf4045f commit aa31e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/content_cao.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ void GenericCAO::addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
962962
// Add a text node for showing the name
963963
gui::IGUIEnvironment* gui = irr->getGUIEnvironment();
964964
std::wstring wname = narrow_to_wide(m_name);
965-
m_textnode = smgr->addTextSceneNode(gui->getBuiltInFont(),
965+
m_textnode = smgr->addTextSceneNode(gui->getSkin()->getFont(),
966966
wname.c_str(), video::SColor(255,255,255,255), node);
967967
m_textnode->grab();
968968
m_textnode->setPosition(v3f(0, BS*1.1, 0));

0 commit comments

Comments
 (0)
Please sign in to comment.