From cda853872aa079139f25fc9492bdb73476c213e0 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 9 Jan 2009 22:56:28 +0000 Subject: (svn r14944) -Cleanup: add spaces around some operators --- src/ai/trolly/build.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ai/trolly') diff --git a/src/ai/trolly/build.cpp b/src/ai/trolly/build.cpp index e1f4b9980..0723386f7 100644 --- a/src/ai/trolly/build.cpp +++ b/src/ai/trolly/build.cpp @@ -64,7 +64,7 @@ CommandCost AiNew_Build_Bridge(Company *c, TileIndex tile_a, TileIndex tile_b, b // Find a good bridgetype (the best money can buy) bridge_len = GetTunnelBridgeLength(tile_a, tile_b); type = type2 = 0; - for (bridge_type = MAX_BRIDGES-1; bridge_type >= 0; bridge_type--) { + for (bridge_type = MAX_BRIDGES - 1; bridge_type >= 0; bridge_type--) { if (CheckBridge_Stuff(bridge_type, bridge_len)) { type2 = type; type = bridge_type; @@ -142,7 +142,7 @@ CommandCost AiNew_Build_RoutePart(Company *c, Ai_PathFinderInfo *PathFinderInfo, if (route_extra[part - 1] == 0 && route_extra[part] == 0) { while (route_extra[part] == 0) { // Get the current direction - dir = AiNew_GetRailDirection(route[part-1], route[part], route[part+1]); + dir = AiNew_GetRailDirection(route[part - 1], route[part], route[part + 1]); // Is it the same as the last one? if (old_dir != -1 && old_dir != dir) break; old_dir = dir; @@ -191,10 +191,10 @@ CommandCost AiNew_Build_RoutePart(Company *c, Ai_PathFinderInfo *PathFinderInfo, // Keep it doing till we go an other way // EnsureNoVehicleOnGround makes sure we don't build on a tile where a vehicle is. This way // it will wait till the vehicle is gone.. - if (route_extra[part-1] == 0 && route_extra[part] == 0 && (flag != DC_EXEC || EnsureNoVehicleOnGround(route[part]))) { + if (route_extra[part - 1] == 0 && route_extra[part] == 0 && (flag != DC_EXEC || EnsureNoVehicleOnGround(route[part]))) { while (route_extra[part] == 0 && (flag != DC_EXEC || EnsureNoVehicleOnGround(route[part]))) { // Get the current direction - dir = AiNew_GetRoadDirection(route[part-1], route[part], route[part+1]); + dir = AiNew_GetRoadDirection(route[part - 1], route[part], route[part + 1]); // Is it the same as the last one? if (old_dir != -1 && old_dir != dir) break; old_dir = dir; -- cgit v1.2.3-54-g00ecf