summaryrefslogtreecommitdiff
path: root/npf.c
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2005-06-17 00:46:33 +0000
committermatthijs <matthijs@openttd.org>2005-06-17 00:46:33 +0000
commitc81de3e1e9ddfd4434afb074674c1b5a35eb00c6 (patch)
treebe874245a1a8923fcac4419c7ad87033cea5a585 /npf.c
parent8e535337861d419c6fc9cdd450e90689fad30e7d (diff)
downloadopenttd-c81de3e1e9ddfd4434afb074674c1b5a35eb00c6.tar.xz
(svn r2451) * Fix: Assertion caused by passing a trackdir where a track was expected.
Diffstat (limited to 'npf.c')
-rw-r--r--npf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/npf.c b/npf.c
index ea48a8234..5e42c10db 100644
--- a/npf.c
+++ b/npf.c
@@ -300,7 +300,7 @@ int32 NPFRailPathCost(AyStar* as, AyStarNode* current, OpenListNode* parent) {
* encounter, if it is red */
/* Is this a presignal exit or combo? */
- SignalType sigtype = GetSignalType(tile, trackdir);
+ SignalType sigtype = GetSignalType(tile, TrackdirToTrack(trackdir));
if (sigtype == SIGTYPE_EXIT || sigtype == SIGTYPE_COMBO)
/* Penalise exit and combo signals differently (heavier) */
cost += _patches.npf_rail_firstred_exit_penalty;