1
0
Fork 0

(svn r14219) -Fix (rthebeginning): 10 days != 6*2.5 days, effectively causing the payment graph to show the wrong data.

release/0.7
rubidium 2008-09-02 08:25:15 +00:00
parent 941f8b5f16
commit fd97a89c57
1 changed files with 1 additions and 1 deletions

View File

@ -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++;