diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-04-26 11:53:21 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-04-26 11:53:21 +0000 |
commit | bcc6f8b670f15976bb7bd14e96b6a1a2ab57f47d (patch) | |
tree | f2d8a070f92edf59084a74dac67660a5edd94c1e /src | |
parent | e4c171740956998fdac81c071aafefcb9dba817e (diff) | |
download | mana-client-bcc6f8b670f15976bb7bd14e96b6a1a2ab57f47d.tar.gz mana-client-bcc6f8b670f15976bb7bd14e96b6a1a2ab57f47d.tar.bz2 mana-client-bcc6f8b670f15976bb7bd14e96b6a1a2ab57f47d.tar.xz mana-client-bcc6f8b670f15976bb7bd14e96b6a1a2ab57f47d.zip |
Hair style fix and text wrap fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/being.cpp | 2 | ||||
-rw-r--r-- | src/gui/chat.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp index dd2b2333..0ef1e15f 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -202,7 +202,7 @@ void Being::setHairColor(int color) void Being::setHairStyle(int style) { hairStyle = style; - if (hairStyle < 1 || hairStyle > 2) + if (hairStyle < 1 || hairStyle > 4) { hairStyle = 1; } diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 11f60466..0f298436 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -97,7 +97,7 @@ void ChatWindow::chat_log(std::string line, int own) // A try to get text sentences no too long... bool finished = false; - unsigned int maxLength = 80; + unsigned int maxLength = 98; while (!finished) { |