(svn r11526) -Codechange: Rename the function delta fitting to the naming style
This commit is contained in:
@@ -40,8 +40,8 @@ static const uint _trackdir_length[TRACKDIR_END] = {
|
||||
*/
|
||||
static uint NPFDistanceTrack(TileIndex t0, TileIndex t1)
|
||||
{
|
||||
const uint dx = delta(TileX(t0), TileX(t1));
|
||||
const uint dy = delta(TileY(t0), TileY(t1));
|
||||
const uint dx = Delta(TileX(t0), TileX(t1));
|
||||
const uint dy = Delta(TileY(t0), TileY(t1));
|
||||
|
||||
const uint straightTracks = 2 * min(dx, dy); /* The number of straight (not full length) tracks */
|
||||
/* OPTIMISATION:
|
||||
|
Reference in New Issue
Block a user