(svn r237) -Fix: [1025836] Company value problem (again). Now company value rightly shows the value, including ALL your money.

-Fix: Graphs now accomodate 64bit numbers (so the company value graph doesn't plummet into -... if value is too big)
-Strgen: added CURRCOMPACT64 for this, and 64bit versions of several macros.
This commit is contained in:
darkvater
2004-09-13 20:38:36 +00:00
parent add49120dd
commit fc9a450e75
21 changed files with 108 additions and 67 deletions

View File

@@ -75,7 +75,7 @@ int64 CalculateCompanyValue(Player *p) {
}
if (p->player_money > 0)
value += p->player_money;
value += p->money64; // add real money value
return value;
}