diff options
Diffstat (limited to 'currency.c')
-rw-r--r-- | currency.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/currency.c b/currency.c index bd529f18b..d62aa2d73 100644 --- a/currency.c +++ b/currency.c @@ -84,7 +84,7 @@ uint GetMaskOfAllowedCurrencies(void) if (to_euro == CF_ISEURO && _cur_year < 2000 - MAX_YEAR_BEGIN_REAL) continue; mask |= (1 << i); } - mask |= (1 << 23); // always allow custom currency + mask |= (1 << CUSTOM_CURRENCY_ID); // always allow custom currency return mask; } |