Changeset - r11862:a2867b8032e2
[Not reviewed]
master
0 1 0
frosch - 15 years ago 2009-05-09 14:23:19
frosch@openttd.org
(svn r16261) -Fix (r16260): Replace a space with a newline and a tab. (thanks smatz)
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/vehicle_base.h
Show inline comments
 
@@ -603,7 +603,8 @@ public:
 
	 * Increments cur_order_index, keeps care of the wrap-around and invalidates the GUI.
 
	 * Note: current_order is not invalidated.
 
	 */
 
	void IncrementOrderIndex() {
 
	void IncrementOrderIndex()
 
	{
 
		this->cur_order_index++;
 
		if (this->cur_order_index >= this->GetNumOrders()) this->cur_order_index = 0;
 
		InvalidateVehicleOrder(this, 0);
0 comments (0 inline, 0 general)