diff options
author | peter1138 <peter1138@openttd.org> | 2008-08-05 00:17:56 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-08-05 00:17:56 +0000 |
commit | ddd8b73f0adbf9fdda07c98608a7c8f04a20f347 (patch) | |
tree | 871e84d92a360e1a8e646f70cad73558937b1618 | |
parent | fe6111d6f22112f4979becc7d287ea5b3aa73b11 (diff) | |
download | openttd-ddd8b73f0adbf9fdda07c98608a7c8f04a20f347.tar.xz |
(svn r14000) -Codechange: Missing enum entries kind of defeat the point of the enum
-rw-r--r-- | src/smallmap_gui.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index 6e0df2adc..326ca7391 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -548,7 +548,9 @@ class SmallMapWindow : public Window SMT_CONTOUR, SMT_VEHICLES, SMT_INDUSTRY, - SMT_OWNER = 5, + SMT_ROUTES, + SMT_VEGETATION, + SMT_OWNER, }; static SmallMapType map_type; |