diff options
-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) { |