From e297eada070bbbf1cb1a6b204326775f5a7a1a90 Mon Sep 17 00:00:00 2001 From: dominik Date: Wed, 22 Dec 2004 19:48:27 +0000 Subject: (svn r1233) Fixed several currency issues. Now currencies should work correctly again. --- economy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'economy.c') diff --git a/economy.c b/economy.c index d48f9a65b..2610ff314 100644 --- a/economy.c +++ b/economy.c @@ -19,11 +19,11 @@ #include "network_data.h" // get a mask of the allowed currencies depending on the year -uint GetMaskOfAllowedCurrencies() +uint GetMaskOfAllowedCurrencies(void) { int i; uint mask = 0; - for(i=0; i!=lengthof(_currency_specs); i++) { + for (i = 0; i != lengthof(_currency_specs); i++) { uint16 to_euro = _currency_specs[i].to_euro; if (i == 23) mask |= (1 << 23); // always allow custom currency if (to_euro != CF_NOEURO && to_euro != CF_ISEURO && _cur_year >= (to_euro-1920)) continue; @@ -33,7 +33,7 @@ uint GetMaskOfAllowedCurrencies() return mask; } -void CheckSwitchToEuro() +void CheckSwitchToEuro(void) { if (_currency_specs[_opt.currency].to_euro != CF_NOEURO && _currency_specs[_opt.currency].to_euro != CF_ISEURO && -- cgit v1.2.3-54-g00ecf