mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-08 23:19:40 +00:00
(svn r9746) -Codechange [YAPF]: added DEBUGs level 0 if the current train order is OT_GOTO_WAYPOINT and waypoint is invalid or v->dest_tile is wrong
This commit is contained in:
parent
027597f485
commit
bf04c88eca
@ -95,8 +95,16 @@ public:
|
||||
|
||||
case OT_GOTO_WAYPOINT: {
|
||||
Waypoint *wp = GetWaypoint(v->current_order.dest);
|
||||
if (wp == NULL) break;
|
||||
if (wp == NULL) {
|
||||
/* Invalid waypoint in orders! */
|
||||
DEBUG(yapf, 0, "Invalid waypoint in orders == 0x%04X (train %d, player %d)", v->current_order.dest, v->unitnumber, (PlayerID)v->owner);
|
||||
break;
|
||||
}
|
||||
m_destTile = wp->xy;
|
||||
if (m_destTile != v->dest_tile) {
|
||||
/* Something is wrong with orders! */
|
||||
DEBUG(yapf, 0, "Invalid v->dest_tile == 0x%04X (train %d, player %d)", v->dest_tile, v->unitnumber, (PlayerID)v->owner);
|
||||
}
|
||||
m_dest_station_id = INVALID_STATION;
|
||||
m_destTrackdirs = TrackToTrackdirBits(AxisToTrack(GetWaypointAxis(wp->xy)));
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user