diff options
Diffstat (limited to 'src/GameTick.cpp')
-rw-r--r-- | src/GameTick.cpp | 6 |
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(); |