diff src/graph_gui.cpp @ 10054:fe831433ff7a draft

(svn r14219) -Fix (rthebeginning): 10 days != 6*2.5 days, effectively causing the payment graph to show the wrong data.
author rubidium <rubidium@openttd.org>
date Tue, 02 Sep 2008 08:25:15 +0000 (2008-09-02)
parents 5aa8480f318a
children c54d140df948
line wrap: on
line diff
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -686,7 +686,7 @@
 
 			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++;