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/client.cc')
-rw-r--r--src/client/client.cc16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/client/client.cc b/src/client/client.cc
index f146a8f..a94219b 100644
--- a/src/client/client.cc
+++ b/src/client/client.cc
@@ -4,14 +4,14 @@
the terms and conditions of the GNU General Public License version 2
*/
-#include "camera.h"
-#include "view.h"
-#include "video.h"
-#include "input.h"
-#include "console.h"
+#include "client/camera.h"
+#include "client/view.h"
+#include "client/video.h"
+#include "client/input.h"
+#include "client/console.h"
#include "game/game.h"
-#include "osirion.h"
+#include "common/common.h"
#include <SDL/SDL.h>
@@ -26,7 +26,6 @@ Input input;
// private instance of the client console object
Console clientconsole;
-
void quit(int status)
{
SDL_Quit();
@@ -35,9 +34,6 @@ void quit(int status)
void init()
{
- // set clientconsole as the common console object
- common::Console::instance = &clientconsole;
-
// Initialize the video subsystem
video.init();
if (!video.initialized) {