diff options
author | frosch <frosch@openttd.org> | 2008-08-23 16:13:31 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-08-23 16:13:31 +0000 |
commit | 8886f5b4c349fdbf513b082cb5b808974bfcfdc0 (patch) | |
tree | 56bb0a85efa7ac723d689920190775a04c0d956a /src | |
parent | a7bc5f2d0d0e917969e56897e0ee7bc07fdee4b9 (diff) | |
download | openttd-8886f5b4c349fdbf513b082cb5b808974bfcfdc0.tar.xz |
(svn r14140) -Fix (r14135): Enum in saveload-table.
Diffstat (limited to 'src')
-rw-r--r-- | src/waypoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint.h b/src/waypoint.h index 1d0e64ca4..22259de09 100644 --- a/src/waypoint.h +++ b/src/waypoint.h @@ -25,7 +25,7 @@ struct Waypoint : PoolItem<Waypoint, WaypointID, &_Waypoint_pool> { ViewportSign sign; ///< Dimensions of sign (not saved) Date build_date; ///< Date of construction - Owner owner; ///< Whom this waypoint belongs to + PlayerByte owner; ///< Whom this waypoint belongs to byte stat_id; ///< ID of waypoint within the waypoint class (not saved) uint32 grfid; ///< ID of GRF file |