(svn r2155) - Fix: Company value was $2 when value more than an int32 could handle (use max64 instead of max)

pull/155/head
Darkvater 19 years ago
parent d08dfa84a4
commit 1b43dec1d6

@ -108,7 +108,7 @@ int64 CalculateCompanyValue(Player *p) {
value += p->money64 - p->current_loan; // add real money value
return max(value, 1);
return max64(value, 1);
}
// if update is set to true, the economy is updated with this score

Loading…
Cancel
Save