summaryrefslogtreecommitdiff
path: root/src/clear_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/clear_cmd.cpp')
-rw-r--r--src/clear_cmd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/clear_cmd.cpp b/src/clear_cmd.cpp
index 8765f55ef..4dab24024 100644
--- a/src/clear_cmd.cpp
+++ b/src/clear_cmd.cpp
@@ -22,12 +22,12 @@
#include "genworld.h"
#include "industry.h"
-typedef struct TerraformerHeightMod {
+struct TerraformerHeightMod {
TileIndex tile;
byte height;
-} TerraformerHeightMod;
+};
-typedef struct TerraformerState {
+struct TerraformerState {
int height[4];
uint32 flags;
@@ -40,7 +40,7 @@ typedef struct TerraformerState {
TileIndex *tile_table;
TerraformerHeightMod *modheight;
-} TerraformerState;
+};
static int TerraformAllowTileProcess(TerraformerState *ts, TileIndex tile)
{