summary refs log tree commit diff
path: root/src/GameTick.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GameTick.cpp')
-rw-r--r--src/GameTick.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/GameTick.cpp b/src/GameTick.cpp
index 8050496..483f0de 100644
--- a/src/GameTick.cpp
+++ b/src/GameTick.cpp
@@ -151,7 +151,7 @@ void Game::handleMenu(unsigned char* theKeyMap)
 
 		if (!gameinprogress) {
 			mission = 0;
-			InitGame();
+			initGame(this);
 		}
 
 		MoveMouse(oldmouseloc.h, oldmouseloc.v, &mouseloc);
@@ -444,7 +444,7 @@ void Game::Tick()
 			saveHighScore();
 		} else {
 			updateSong();
-			InitGame();
+			initGame(this);
 		}
 	}
 
@@ -456,7 +456,7 @@ void Game::Tick()
 		alSourcePlay(gSourceID[soulinsound]);
 
 		updateSong();
-		InitGame();
+		initGame(this);
 	}
 
 	sprites.DoStuff();