diff options
author | glx <glx@openttd.org> | 2008-02-29 22:55:57 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-02-29 22:55:57 +0000 |
commit | b120ff527631ea191deeac6ac01f441d42e22f56 (patch) | |
tree | 0ef82cd61b478bb9434c002c57f923c3bd4f6c2e /src/group.h | |
parent | 8da8f66ce15986a9dffda3adb145f9583687ad0c (diff) | |
download | openttd-b120ff527631ea191deeac6ac01f441d42e22f56.tar.xz |
(svn r12322) -Fix (r9874): endian issue when saving/loading group owner
Diffstat (limited to 'src/group.h')
-rw-r--r-- | src/group.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group.h b/src/group.h index baae2e1bf..ca34556eb 100644 --- a/src/group.h +++ b/src/group.h @@ -23,7 +23,7 @@ struct Group : PoolItem<Group, GroupID, &_Group_pool> { char *name; ///< Group Name uint16 num_vehicle; ///< Number of vehicles wich belong to the group - PlayerID owner; ///< Group Owner + PlayerByte owner; ///< Group Owner VehicleTypeByte vehicle_type; ///< Vehicle type of the group bool replace_protection; ///< If set to true, the global autoreplace have no effect on the group |