Changeset - r17471:b0ba583e0962
[Not reviewed]
master
0 1 0
frosch - 13 years ago 2011-03-13 10:43:41
frosch@openttd.org
(svn r22236) -Fix (r21457): Disarm a bear-pit, which r22226 almost fell into.
1 file changed with 5 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/order_gui.cpp
Show inline comments
 
@@ -807,8 +807,8 @@ public:
 

	
 
	virtual void OnInvalidateData(int data)
 
	{
 
		VehicleOrderID from = GB(data, 0, 8);
 
		VehicleOrderID to   = GB(data, 8, 8);
 
		VehicleOrderID from = INVALID_VEH_ORDER_ID;
 
		VehicleOrderID to   = INVALID_VEH_ORDER_ID;
 

	
 
		switch (data) {
 
			case -666:
 
@@ -831,6 +831,9 @@ public:
 
				break;
 

	
 
			default:
 
				if (data < 0) break;
 
				from = GB(data, 0, 8);
 
				to   = GB(data, 8, 8);
 
				/* Moving an order. If one of these is INVALID_VEH_ORDER_ID, then
 
				 * the order is being created / removed */
 
				if (this->selected_order == -1) break;
0 comments (0 inline, 0 general)