mirror of https://github.com/OpenTTD/OpenTTD
(svn r14219) -Fix (rthebeginning): 10 days != 6*2.5 days, effectively causing the payment graph to show the wrong data.
parent
941f8b5f16
commit
fd97a89c57
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue