summaryrefslogtreecommitdiff
path: root/src/pathfinder/opf/opf_ship.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-12-02 09:31:38 +0000
committerrubidium <rubidium@openttd.org>2009-12-02 09:31:38 +0000
commitef8cc49175ae8f97c6659c3acd13fdb4434cd535 (patch)
tree70b95a04f49f1755580f2d0a31bf7ec47df717ad /src/pathfinder/opf/opf_ship.h
parent250c355508ea280d89ad0004e715831b59522419 (diff)
downloadopenttd-ef8cc49175ae8f97c6659c3acd13fdb4434cd535.tar.xz
(svn r18370) -Codechange: push some constness/type strictness into the ship pathfinders
Diffstat (limited to 'src/pathfinder/opf/opf_ship.h')
-rw-r--r--src/pathfinder/opf/opf_ship.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfinder/opf/opf_ship.h b/src/pathfinder/opf/opf_ship.h
index 829417b38..10055067b 100644
--- a/src/pathfinder/opf/opf_ship.h
+++ b/src/pathfinder/opf/opf_ship.h
@@ -20,6 +20,6 @@
* @param tracks available tracks on the new tile (to choose from)
* @return the best trackdir for next turn or INVALID_TRACK if the path could not be found
*/
-Track OPFShipChooseTrack(Ship *v, TileIndex tile, DiagDirection enterdir, TrackBits tracks);
+Track OPFShipChooseTrack(const Ship *v, TileIndex tile, DiagDirection enterdir, TrackBits tracks);
#endif /* OPF_SHIP_H */