mirror of https://github.com/OpenTTD/OpenTTD
(svn r24539) -Codechange [FS#5260]: make code simpler by using IsValidTile instead of manually checking the bounds (juanjo)
parent
d70ecf609c
commit
6853df46c7
|
@ -570,15 +570,12 @@ static void ShipController(Ship *v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
DiagDirection diagdir;
|
|
||||||
/* New tile */
|
/* New tile */
|
||||||
if (TileX(gp.new_tile) >= MapMaxX() || TileY(gp.new_tile) >= MapMaxY()) {
|
if (!IsValidTile(gp.new_tile)) goto reverse_direction;
|
||||||
goto reverse_direction;
|
|
||||||
}
|
|
||||||
|
|
||||||
dir = ShipGetNewDirectionFromTiles(gp.new_tile, gp.old_tile);
|
dir = ShipGetNewDirectionFromTiles(gp.new_tile, gp.old_tile);
|
||||||
assert(dir == DIR_NE || dir == DIR_SE || dir == DIR_SW || dir == DIR_NW);
|
assert(dir == DIR_NE || dir == DIR_SE || dir == DIR_SW || dir == DIR_NW);
|
||||||
diagdir = DirToDiagDir(dir);
|
DiagDirection diagdir = DirToDiagDir(dir);
|
||||||
tracks = GetAvailShipTracks(gp.new_tile, diagdir);
|
tracks = GetAvailShipTracks(gp.new_tile, diagdir);
|
||||||
if (tracks == TRACK_BIT_NONE) goto reverse_direction;
|
if (tracks == TRACK_BIT_NONE) goto reverse_direction;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue