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>2007-10-27 13:17:31 +0000
committerStijn Buys <ingar@osirion.org>2007-10-27 13:17:31 +0000
commitbabef2ec1d88b6057b0e17bf1c04dfa3c9d0d5a0 (patch)
tree89c9f65138b500198061954fcf918ca82a11a5ea /src/client/client.cc
parent8a4aa60b830467d81f8029c194bec5b2e74ceb17 (diff)
conditional -DDEBUG messages
Diffstat (limited to 'src/client/client.cc')
-rw-r--r--src/client/client.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/client/client.cc b/src/client/client.cc
index 14e6bb5..f146a8f 100644
--- a/src/client/client.cc
+++ b/src/client/client.cc
@@ -17,11 +17,16 @@
namespace client {
+// public instances
Camera camera;
View view;
Video video;
Input input;
+// private instance of the client console object
+Console clientconsole;
+
+
void quit(int status)
{
SDL_Quit();
@@ -30,12 +35,9 @@ void quit(int status)
void init()
{
- // initialize console
- Console clientconsole;
+ // set clientconsole as the common console object
common::Console::instance = &clientconsole;
- conmesg << "Project::OSiRiON " << OSIRION_VERSION << std::endl;
-
// Initialize the video subsystem
video.init();
if (!video.initialized) {