Changeset - r11688:736184df0c5d
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-04-18 13:21:51
rubidium@openttd.org
(svn r16078) -Change: do not show stop location for via orders; they don't stop there
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/order_gui.cpp
Show inline comments
 
@@ -199,13 +199,13 @@ void DrawOrderString(const Vehicle *v, c
 
				if (order->wait_time > 0) {
 
					SetDParam(6, STR_TIMETABLE_STAY_FOR);
 
					SetTimetableParams(7, 8, order->wait_time);
 
				}
 
			} else {
 
				SetDParam(4, (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) ? STR_EMPTY : _station_load_types[unload][load]);
 
				if (v->type == VEH_TRAIN) {
 
				if (v->type == VEH_TRAIN && (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) == 0) {
 
					SetDParam(6, order->GetStopLocation() + STR_ORDER_STOP_LOCATION_NEAR_END);
 
				}
 
			}
 
		} break;
 

	
 
		case OT_GOTO_DEPOT:
0 comments (0 inline, 0 general)