Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-05-18 21:01:52 +0000
committerStijn Buys <ingar@osirion.org>2008-05-18 21:01:52 +0000
commitc6d7e54f4b3e18587e96a3aeb0f290becd93cbdc (patch)
tree95e22279f43ac33908cb7c4572721c796c0eb061 /src
parent2f4c20a0b6fa0397d623d883ee48ba59563f1e2f (diff)
corrects a minor notify color bug
Diffstat (limited to 'src')
-rw-r--r--src/client/console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index db2aa83..8eab607 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -242,7 +242,6 @@ void Console::draw_notify()
using namespace render;
// draw notifications
- Text::setcolor('N');
size_t width = (size_t) ((video::width-8) / Text::fontwidth());
size_t n = notify_pos % MAXNOTIFYLINES;
float h = video::height/2;
@@ -260,6 +259,7 @@ void Console::draw_notify()
const char *c = linedata.c_str();
char pen = 'N';
char wordpen = 'N';
+ Text::setcolor('N');
while (*c) {