(svn r11526) -Codechange: Rename the function delta fitting to the naming style

This commit is contained in:
skidd13
2007-11-26 16:01:29 +00:00
parent 91152b925e
commit f56579e0d9
9 changed files with 23 additions and 23 deletions

View File

@@ -164,7 +164,7 @@ void PlaceTreeAtSameHeight(TileIndex tile, uint height)
continue;
/* Not too much height difference */
if (delta(GetTileZ(cur_tile), height) > 2) continue;
if (Delta(GetTileZ(cur_tile), height) > 2) continue;
/* Place one tree and quit */
PlaceTree(cur_tile, r);