summaryrefslogtreecommitdiff
path: root/roadveh_cmd.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-06-29 08:58:08 +0000
committerpeter1138 <peter1138@openttd.org>2006-06-29 08:58:08 +0000
commit2e0498dce05b59a8e7a9e99d7508932a9227c993 (patch)
treefaebf81fae1ba3df65ac2ccb7f9bfa02e8e7c71b /roadveh_cmd.c
parent5c88a9745acb06ed085cba594f3b3ca8d8c04ba3 (diff)
downloadopenttd-2e0498dce05b59a8e7a9e99d7508932a9227c993.tar.xz
(svn r5427) - Codechange: testing for "== true" is redundant.
Diffstat (limited to 'roadveh_cmd.c')
-rw-r--r--roadveh_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c
index d0a3c0a93..ee9f9cec1 100644
--- a/roadveh_cmd.c
+++ b/roadveh_cmd.c
@@ -128,7 +128,7 @@ int32 CmdBuildRoadVeh(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
return_cmd_error(STR_00E1_TOO_MANY_VEHICLES_IN_GAME);
/* find the first free roadveh id */
- unit_num = (HASBIT(p2, 0) == true) ? 0 : GetFreeUnitNumber(VEH_Road);
+ unit_num = HASBIT(p2, 0) ? 0 : GetFreeUnitNumber(VEH_Road);
if (unit_num > _patches.max_roadveh)
return_cmd_error(STR_00E1_TOO_MANY_VEHICLES_IN_GAME);