diff options
author | Stijn Buys <ingar@osirion.org> | 2008-05-18 21:01:52 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-05-18 21:01:52 +0000 |
commit | c6d7e54f4b3e18587e96a3aeb0f290becd93cbdc (patch) | |
tree | 95e22279f43ac33908cb7c4572721c796c0eb061 /src | |
parent | 2f4c20a0b6fa0397d623d883ee48ba59563f1e2f (diff) |
corrects a minor notify color bug
Diffstat (limited to 'src')
-rw-r--r-- | src/client/console.cc | 2 |
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) { |