(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 d736a04b59
commit 734b22e070
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);