diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-07-13 09:50:11 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-07-13 09:50:11 +0000 |
commit | 360408fc4c04a72750ecfece7539260129b765ab (patch) | |
tree | d01bdddafa4dd0aa2cab4f3995dda1d0748cccee /src/being.cpp | |
parent | 6eb84fcfaf55c7e4baf13bfdff8f0a16a5b97d76 (diff) | |
download | mana-360408fc4c04a72750ecfece7539260129b765ab.tar.gz mana-360408fc4c04a72750ecfece7539260129b765ab.tar.bz2 mana-360408fc4c04a72750ecfece7539260129b765ab.tar.xz mana-360408fc4c04a72750ecfece7539260129b765ab.zip |
- Adding the wonderful new font by Bjorn to speech and player names
- Way to system cursor (now you can choose the original sdl cursor in config)
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp index d6d16b21..a6d700ea 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -346,6 +346,7 @@ void Being::drawSpeech(Graphics *graphics) { // Draw speech above this being if (showSpeech) { + graphics->setFont(speechFont); graphics->drawText(speech, text_x + 20, text_y - 60, gcn::Graphics::CENTER); |