mirror of https://github.com/OpenTTD/OpenTTD
(svn r7966) -Fix (r7936): Eh AxisToTrack returns Track not Axis, thanks KUDr
parent
025d8dd224
commit
43c030f438
|
@ -371,9 +371,9 @@ not_valid_below:;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (flags & DC_EXEC) {
|
if (flags & DC_EXEC) {
|
||||||
Axis axis = AxisToTrack(direction);
|
Track track = AxisToTrack(direction);
|
||||||
SetSignalsOnBothDir(tile_start, axis);
|
SetSignalsOnBothDir(tile_start, track);
|
||||||
YapfNotifyTrackLayoutChange(tile_start, axis);
|
YapfNotifyTrackLayoutChange(tile_start, track);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* for human player that builds the bridge he gets a selection to choose from bridges (DC_QUERY_COST)
|
/* for human player that builds the bridge he gets a selection to choose from bridges (DC_QUERY_COST)
|
||||||
|
|
Loading…
Reference in New Issue