diff options
author | truelight <truelight@openttd.org> | 2006-07-14 09:02:53 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-07-14 09:02:53 +0000 |
commit | 15e959d520c8451852a86eac4ced3a9ab0a80870 (patch) | |
tree | 74f92247e68a5f69b642940f5d3261069b82662d | |
parent | 97c2d3d76488ff696d005f9363f20abad8248218 (diff) | |
download | openttd-15e959d520c8451852a86eac4ced3a9ab0a80870.tar.xz |
(svn r5494) -Fix: [#241] an enum with 2 equal numbers is rarely a good idea ;) (RichK67)
-rw-r--r-- | station_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/station_map.h b/station_map.h index 0f8167967..9fecd7a0f 100644 --- a/station_map.h +++ b/station_map.h @@ -42,7 +42,7 @@ enum { GFX_RADAR_DISTRICTWE_LAST = 156, GFX_WINDSACK_INTERCON_FIRST = 164, GFX_WINDSACK_INTERCON_LAST = 167, - GFX_BASE_END = 167 + GFX_BASE_END = 168 }; enum { |