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-10-16 16:58:44 +0000
committerStijn Buys <ingar@osirion.org>2008-10-16 16:58:44 +0000
commitb87433d87147f88868bf848daf7eabc2d459e8c0 (patch)
tree48e1bc52dbbf20148ab12fcfbc95ad9f04da4f79 /src/client/console.cc
parent9ce36cfd343755fad90f87d458a86ce3dbcacd7e (diff)
fixes win32 segfault
Diffstat (limited to 'src/client/console.cc')
-rw-r--r--src/client/console.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index 80b6224..3b94b4d 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -24,21 +24,21 @@ namespace client {
const float DEFAULT_CONSOLE_HEIGHT = 0.7f;
const size_t DEFAULT_MAX_HISTO_LINES = 512;
+// the global console buffer object
+ConsoleBuffer Console::con_buffer;
+
/* -- ConsoleBuffer ------------------------------------------------ */
-ConsoleBuffer::ConsoleBuffer()
+ConsoleBuffer::ConsoleBuffer() : sys::ConsoleInterface()
{
- con_print << "^BInitializing console..." << std::endl;
+ //con_print << "^BInitializing console..." << std::endl;
}
ConsoleBuffer::~ConsoleBuffer()
{
- con_print << "^BShutting down console..." << std::endl;
+ //con_print << "^BShutting down console..." << std::endl;
}
-// the global console buffer object
-ConsoleBuffer Console::con_buffer;
-
//--- Console -----------------------------------------------------
Console::Console(ui::Widget *parent) : ui::Window(parent)