1
0
Fork 0

(svn r15219) -Fix (r15216): MSVC failed to find the proper casts.

release/0.7
Yexo 2009-01-23 09:20:57 +00:00
parent 8ecdbf216d
commit c8cbdc17d3
1 changed files with 2 additions and 2 deletions

View File

@ -666,10 +666,10 @@ static bool LoadOldCargoPaymentRate(LoadgameState *ls, int num)
* which otherwise would cause much less income while the annual running costs of
* the vehicles stay the same" */
Money m = ((((Money)_old_price) << 16) + _old_price_frac) * 124 / 74;
Money m = ((((Money)_old_price) << 16) + (uint)_old_price_frac) * 124 / 74;
_old_price = m >> 16;
_old_price_frac = GB(m, 0, 16);
_old_price_frac = GB((int64)m, 0, 16);
}
_cargo_payment_rates[num] = -_old_price;