summaryrefslogtreecommitdiff
path: root/src/openttd.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-03-22 03:42:43 +0000
committerbelugas <belugas@openttd.org>2007-03-22 03:42:43 +0000
commit691f8578fd4ea12c372534c367312ee7b8763c39 (patch)
tree7d05afaad21b690abc8c07d95e1f62206b11bccd /src/openttd.h
parent829822768516b017f1962e08ce14b0586575c92f (diff)
downloadopenttd-691f8578fd4ea12c372534c367312ee7b8763c39.tar.xz
(svn r9400) -Codechange: Use some more representative enum names for landscape types.
Diffstat (limited to 'src/openttd.h')
-rw-r--r--src/openttd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/openttd.h b/src/openttd.h
index 4fa9fbf9a..0b1f1649f 100644
--- a/src/openttd.h
+++ b/src/openttd.h
@@ -183,10 +183,10 @@ enum {
/* Landscape types */
enum {
- LT_NORMAL = 0,
- LT_HILLY = 1,
- LT_DESERT = 2,
- LT_CANDY = 3,
+ LT_TEMPERATE = 0,
+ LT_ARCTIC = 1,
+ LT_TROPIC = 2,
+ LT_TOYLAND = 3,
NUM_LANDSCAPE = 4,
};