Changeset - r10054:3961e840e26b
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-09-02 08:25:15
rubidium@openttd.org
(svn r14219) -Fix (rthebeginning): 10 days != 6*2.5 days, effectively causing the payment graph to show the wrong data.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/graph_gui.cpp
Show inline comments
 
@@ -686,7 +686,7 @@ struct PaymentRatesGraphWindow : BaseGra
 

	
 
			this->colors[i] = cs->legend_colour;
 
			for (uint j = 0; j != 20; j++) {
 
				this->cost[i][j] = GetTransportedGoodsIncome(10, 20, j * 6 + 6, c);
 
				this->cost[i][j] = GetTransportedGoodsIncome(10, 20, j * 4 + 4, c);
 
			}
 

	
 
			i++;
0 comments (0 inline, 0 general)