# HG changeset patch # User rubidium # Date 2008-09-02 08:25:15 # Node ID 3961e840e26b14d1c78ae3735205976fb41eec38 # Parent c289289625e723bbf2119d13bf0ab38d5660312b (svn r14219) -Fix (rthebeginning): 10 days != 6*2.5 days, effectively causing the payment graph to show the wrong data. diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -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++;