Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/console.cc')
-rw-r--r--src/client/console.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index 9678fa7..bc99bfd 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -68,11 +68,11 @@ void Console::clear()
}
-void Console::draw() {
+void Console::draw(bool draw_ui_notifications) {
flush();
if (visible())
draw_console();
- else
+ else if (draw_ui_notifications)
draw_notify();
}