summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/train_cmd.c b/train_cmd.c
index 0f0fd6c5a..9bf9d210c 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -2622,10 +2622,7 @@ static const byte _depot_track_ind[4] = {0,1,0,1};
bool ValidateTrainInDepot( uint data_a, uint data_b )
{
Vehicle *v = GetVehicle(data_a);
- if (v->u.rail.track == 0x80 && (v->vehstatus | VS_STOPPED))
- return true;
- else
- return false;
+ return (v->u.rail.track == 0x80 && (v->vehstatus | VS_STOPPED));
}
void TrainEnterDepot(Vehicle *v, uint tile)