summaryrefslogtreecommitdiff
path: root/src/town_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/town_map.h')
-rw-r--r--src/town_map.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/town_map.h b/src/town_map.h
index 41505871d..016ff9a6d 100644
--- a/src/town_map.h
+++ b/src/town_map.h
@@ -126,7 +126,7 @@ static inline void HaltLift(TileIndex t)
*/
static inline byte GetLiftPosition(TileIndex t)
{
- return GB(_m[t].m6, 2, 6);
+ return GB(_me[t].m6, 2, 6);
}
/**
@@ -136,7 +136,7 @@ static inline byte GetLiftPosition(TileIndex t)
*/
static inline void SetLiftPosition(TileIndex t, byte pos)
{
- SB(_m[t].m6, 2, 6, pos);
+ SB(_me[t].m6, 2, 6, pos);
}
/**
@@ -315,7 +315,7 @@ static inline byte GetHouseTriggers(TileIndex t)
static inline byte GetHouseProcessingTime(TileIndex t)
{
assert(IsTileType(t, MP_HOUSE));
- return GB(_m[t].m6, 2, 6);
+ return GB(_me[t].m6, 2, 6);
}
/**
@@ -327,7 +327,7 @@ static inline byte GetHouseProcessingTime(TileIndex t)
static inline void SetHouseProcessingTime(TileIndex t, byte time)
{
assert(IsTileType(t, MP_HOUSE));
- SB(_m[t].m6, 2, 6, time);
+ SB(_me[t].m6, 2, 6, time);
}
/**
@@ -338,7 +338,7 @@ static inline void SetHouseProcessingTime(TileIndex t, byte time)
static inline void DecHouseProcessingTime(TileIndex t)
{
assert(IsTileType(t, MP_HOUSE));
- _m[t].m6 -= 1 << 2;
+ _me[t].m6 -= 1 << 2;
}
/**