summaryrefslogtreecommitdiff
path: root/noncore/games/sfcave-sdl/flyterrain.cpp
Unidiff
Diffstat (limited to 'noncore/games/sfcave-sdl/flyterrain.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/sfcave-sdl/flyterrain.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/noncore/games/sfcave-sdl/flyterrain.cpp b/noncore/games/sfcave-sdl/flyterrain.cpp
index b1b8db5..bffe5c9 100644
--- a/noncore/games/sfcave-sdl/flyterrain.cpp
+++ b/noncore/games/sfcave-sdl/flyterrain.cpp
@@ -1,26 +1,25 @@
1 1#include <SDL/SDL_gfxPrimitives.h>
2#include "SDL_gfxPrimitives.h"
3 2
4#include "constants.h" 3#include "constants.h"
5#include "flyterrain.h" 4#include "flyterrain.h"
6#include "random.h" 5#include "random.h"
7 6
8 7
9 int FlyTerrain :: flyScoreZones[][3] = { { 0, 20, 5 }, 8 int FlyTerrain :: flyScoreZones[][3] = { { 0, 20, 5 },
10 { 20, 30, 2 }, 9 { 20, 30, 2 },
11 { 30, 40, 0 }, 10 { 30, 40, 0 },
12 { 40, 100, -1 }, 11 { 40, 100, -1 },
13 { 100, 300, -2 }, 12 { 100, 300, -2 },
14 { -1, -1, -1 } }; 13 { -1, -1, -1 } };
15 14
16FlyTerrain :: FlyTerrain( int w, int h ) 15FlyTerrain :: FlyTerrain( int w, int h )
17 : Terrain( w, h, false, true ) 16 : Terrain( w, h, false, true )
18{ 17{
19 showScoreZones = true; 18 showScoreZones = true;
20} 19}
21 20
22FlyTerrain :: ~FlyTerrain() 21FlyTerrain :: ~FlyTerrain()
23{ 22{
24} 23}
25 24
26void FlyTerrain :: setPoint( int point ) 25void FlyTerrain :: setPoint( int point )