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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Game.h b/src/Game.h
index 79162ce..0946e10 100644
--- a/src/Game.h
+++ b/src/Game.h
@@ -64,8 +64,8 @@ public:
 	// Event loop
 	Boolean	gQuit;
 	float gamespeed;
-	double multiplier2, multiplier3, multiplier4, multiplier5;
-	double end, start, timetaken, framespersecond;
+	float multiplier2, multiplier3, multiplier4, multiplier5;
+	float end, start, timetaken, framespersecond;
 	timer theTimer;
 	float sps;
 	int maxfps;
@@ -194,7 +194,6 @@ public:
 
 	// Game functions
 	void HandleKeyDown(char theChar);
-	void EventLoop();
 	void Tick();
 	void Splat(int k);
 	~Game();
@@ -204,5 +203,6 @@ extern "C" {
 	void run();
 	void initGl(Game*);
 	void initGame(Game*);
+	void eventLoop(Game*);
 }
 #endif // BLACKSHADES_GAME_H