diff options
author | alberth <alberth@openttd.org> | 2010-07-31 21:02:56 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2010-07-31 21:02:56 +0000 |
commit | a825b4fa5f159604f9f61bafa21b75a22d8944f5 (patch) | |
tree | 7a9c837d047157b4e2d0d068c0c3462c7a643ef9 /src/pathfinder | |
parent | adf94b85297b6a11989617eaa1081c7b1da08b62 (diff) | |
download | openttd-a825b4fa5f159604f9f61bafa21b75a22d8944f5.tar.xz |
(svn r20266) -Doc: Mostly typo fixes, a few doxygen-related improvements.
Diffstat (limited to 'src/pathfinder')
-rw-r--r-- | src/pathfinder/npf/npf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfinder/npf/npf.cpp b/src/pathfinder/npf/npf.cpp index 3944e5ce4..3f34f55f8 100644 --- a/src/pathfinder/npf/npf.cpp +++ b/src/pathfinder/npf/npf.cpp @@ -523,7 +523,7 @@ static int32 NPFRailPathCost(AyStar *as, AyStarNode *current, OpenListNode *pare /* Check for reverse in depot */ if (IsRailDepotTile(tile) && as->EndNodeCheck(as, &new_node) != AYSTAR_FOUND_END_NODE) { /* Penalise any depot tile that is not the last tile in the path. This - * _should_ penalise every occurence of reversing in a depot (and only + * _should_ penalise every occurrence of reversing in a depot (and only * that) */ cost += _settings_game.pf.npf.npf_rail_depot_reverse_penalty; } |