summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2006-05-19 19:36:17 +0000
committerKUDr <kudr@openttd.org>2006-05-19 19:36:17 +0000
commit530bc2bf91b2471f75bde3c4ef2cfe0fc6dbb059 (patch)
tree129f4102f3edd312f777d3e682355cb56d5467d0 /station_cmd.c
parent94ef21bd2d34777ae029709c146636b610b050a7 (diff)
downloadopenttd-530bc2bf91b2471f75bde3c4ef2cfe0fc6dbb059.tar.xz
(svn r4915) - Fix: SLE_UINT8 replaced by SLE_BOOL for bool variables (found by Celestar)
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/station_cmd.c b/station_cmd.c
index c8356d3aa..636bbe1e9 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -2871,7 +2871,7 @@ const TileTypeProcs _tile_type_station_procs = {
static const SaveLoad _roadstop_desc[] = {
SLE_VAR(RoadStop,xy, SLE_UINT32),
- SLE_VAR(RoadStop,used, SLE_UINT8),
+ SLE_VAR(RoadStop,used, SLE_BOOL),
SLE_VAR(RoadStop,status, SLE_UINT8),
/* Index was saved in some versions, but this is not needed */
SLE_CONDNULL(4, 0, 8),