summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-24 19:43:26 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-24 19:43:26 +0100
commita928798a9326de1e6781e14c8ccf5abec1232385 (patch)
tree2e0f82055cab1bddf85102d5161a3262637879ee /src/being.cpp
parent944c187b91e823075dd1708b4f575acd43f0428f (diff)
downloadMana-a928798a9326de1e6781e14c8ccf5abec1232385.tar.gz
Mana-a928798a9326de1e6781e14c8ccf5abec1232385.tar.bz2
Mana-a928798a9326de1e6781e14c8ccf5abec1232385.tar.xz
Mana-a928798a9326de1e6781e14c8ccf5abec1232385.zip
Use standard GUI font also for speech and names
The speech bitmap font can't handle unicode, so it has now been replaced by the standard GUI font, drawn with a shadow for chat and with a full outline for names.
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 5782c423..7036b8cd 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -156,7 +156,7 @@ void Being::setSpeech(const std::string &text, Uint32 time)
delete mSpeech;
mSpeech = new Text(text, mPx + X_SPEECH_OFFSET, mPy - Y_SPEECH_OFFSET,
- gcn::Graphics::CENTER, speechFont,
+ gcn::Graphics::CENTER,
gcn::Color(255, 255, 255), true);
mSpeechTime = 500;
}