Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-08-04 23:36:27 +0000
committerStijn Buys <ingar@osirion.org>2008-08-04 23:36:27 +0000
commita3f1320ee150ff0176f836b0b47762b31b0cd4e4 (patch)
tree402dedb6c594fc71918df08dccfe1ef5b15ca854 /src/client/chat.cc
parent5680cffdd4afdb99d39c644a6c397e670e958848 (diff)
use small gui font everywhere
Diffstat (limited to 'src/client/chat.cc')
-rw-r--r--src/client/chat.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/chat.cc b/src/client/chat.cc
index 522a675..6f63a6d 100644
--- a/src/client/chat.cc
+++ b/src/client/chat.cc
@@ -96,7 +96,8 @@ void draw()
// draw cursor
if ((core::application()->time() - ::floorf(core::application()->time())) < 0.5f) {
- std::string cursor("^B_");
+ std::string cursor("^B");
+ cursor += (char) 11;
Text::draw(4+Text::fontwidth()*(draw_width+5), y , cursor);
}
}