summary refs log tree commit diff
path: root/src/Game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game.h')
-rw-r--r--src/Game.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Game.h b/src/Game.h
index bc60a3c..79162ce 100644
--- a/src/Game.h
+++ b/src/Game.h
@@ -197,12 +197,12 @@ public:
 	void EventLoop();
 	void Tick();
 	void Splat(int k);
-	void InitGame();
 	~Game();
 };
 
 extern "C" {
 	void run();
-	int initGl(Game*);
+	void initGl(Game*);
+	void initGame(Game*);
 }
 #endif // BLACKSHADES_GAME_H