summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-08-23 18:47:04 +0000
committertron <tron@openttd.org>2005-08-23 18:47:04 +0000
commit8b74a95d361cde6715419e90fe25db675a21714d (patch)
tree87cff4a5f0201aacd0256ce38375fbde200eef92 /map.h
parentd3066ddeeb1b8364f5ba8c5a924a6725f4a34805 (diff)
downloadopenttd-8b74a95d361cde6715419e90fe25db675a21714d.tar.xz
(svn r2886) Rename the "owner" attribute to "m1", because when it stores an owner it is accessed by [GS]etOwner anyway and when it doesn't store an owner, but arbitrary data, accessing a field called "owner" is confusing.
Diffstat (limited to 'map.h')
-rw-r--r--map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/map.h b/map.h
index 32c91619b..e57d2f2e3 100644
--- a/map.h
+++ b/map.h
@@ -19,7 +19,7 @@ extern uint _map_size;
typedef struct Tile {
byte type_height;
- byte owner;
+ byte m1;
uint16 m2;
byte m3;
byte m4;