-rw-r--r-- | noncore/games/sfcave-sdl/fly_game.cpp | 3 | ||||
-rw-r--r-- | noncore/games/sfcave-sdl/gates_game.cpp | 4 | ||||
-rw-r--r-- | noncore/games/sfcave-sdl/player.cpp | 2 | ||||
-rw-r--r-- | noncore/games/sfcave-sdl/sfcave_game.cpp | 4 |
4 files changed, 6 insertions, 7 deletions
diff --git a/noncore/games/sfcave-sdl/fly_game.cpp b/noncore/games/sfcave-sdl/fly_game.cpp index 7605c3f..8b05d8f 100644 --- a/noncore/games/sfcave-sdl/fly_game.cpp +++ b/noncore/games/sfcave-sdl/fly_game.cpp @@ -24,4 +24,2 @@ void FlyGame :: init() { - Game :: init(); - switch( difficulty ) @@ -49,2 +47,3 @@ void FlyGame :: init() startScoring = false; + Game :: init(); } diff --git a/noncore/games/sfcave-sdl/gates_game.cpp b/noncore/games/sfcave-sdl/gates_game.cpp index 762801d..700a6ec 100644 --- a/noncore/games/sfcave-sdl/gates_game.cpp +++ b/noncore/games/sfcave-sdl/gates_game.cpp @@ -25,4 +25,2 @@ void GatesGame :: init() { - Game :: init(); - blockHeight = 80; @@ -66,2 +64,4 @@ void GatesGame :: init() blocks[i].y( -1 ); + + Game :: init(); } diff --git a/noncore/games/sfcave-sdl/player.cpp b/noncore/games/sfcave-sdl/player.cpp index 2d52ae2..f024d6b 100644 --- a/noncore/games/sfcave-sdl/player.cpp +++ b/noncore/games/sfcave-sdl/player.cpp @@ -35,3 +35,3 @@ void Player :: init() pos.w( 4 ); - thrust = 0; + currentThrust = 0; crashing = false; diff --git a/noncore/games/sfcave-sdl/sfcave_game.cpp b/noncore/games/sfcave-sdl/sfcave_game.cpp index 1b00e14..8fdbbe5 100644 --- a/noncore/games/sfcave-sdl/sfcave_game.cpp +++ b/noncore/games/sfcave-sdl/sfcave_game.cpp @@ -24,4 +24,2 @@ void SFCaveGame :: init() { - Game :: init(); - blockDistance = 50; @@ -58,2 +56,4 @@ void SFCaveGame :: init() blocks[i].y( -1 ); + + Game :: init(); } |