summaryrefslogtreecommitdiff
path: root/src/town_map.h
diff options
context:
space:
mode:
authorskidd13 <skidd13@openttd.org>2007-11-20 13:35:54 +0000
committerskidd13 <skidd13@openttd.org>2007-11-20 13:35:54 +0000
commiteeaa348f8bfafae1a6e56b857a97d9d23577dcac (patch)
tree51f15a2e52f58ea4446467086c5441cebe4324bf /src/town_map.h
parentb8885630aa9942ea924ffb6eeabc266140485435 (diff)
downloadopenttd-eeaa348f8bfafae1a6e56b857a97d9d23577dcac.tar.xz
(svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
Diffstat (limited to 'src/town_map.h')
-rw-r--r--src/town_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_map.h b/src/town_map.h
index 71c6dbaa6..20d0f9950 100644
--- a/src/town_map.h
+++ b/src/town_map.h
@@ -88,7 +88,7 @@ static inline bool LiftHasDestination(TileIndex t)
*/
static inline void SetLiftDestination(TileIndex t, byte dest)
{
- SETBIT(_me[t].m7, 0);
+ SetBit(_me[t].m7, 0);
SB(_me[t].m7, 1, 3, dest);
}