From fd97a89c576f900e52d44bb631aba62c9b744202 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 2 Sep 2008 08:25:15 +0000 Subject: (svn r14219) -Fix (rthebeginning): 10 days != 6*2.5 days, effectively causing the payment graph to show the wrong data. --- src/graph_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp index 9d84eecda..3392fabc1 100644 --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -686,7 +686,7 @@ struct PaymentRatesGraphWindow : BaseGraphWindow { 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++; -- cgit v1.2.3-54-g00ecf