diff options
author | tron <tron@openttd.org> | 2005-08-06 14:59:54 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-08-06 14:59:54 +0000 |
commit | baca040df07df8d02e342ae1fbc2357b2e116062 (patch) | |
tree | abe83980b6dfec97b5a7f8cb50bc2959e2656c88 /table | |
parent | 4f15ada6cdd2b322f8f2b7a0ad41be7c2cda1192 (diff) | |
download | openttd-baca040df07df8d02e342ae1fbc2357b2e116062.tar.xz |
(svn r2815) Store the currency information in one central place instead of scattering it in several unrelated files
Diffstat (limited to 'table')
-rw-r--r-- | table/currency.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/table/currency.h b/table/currency.h deleted file mode 100644 index 681019114..000000000 --- a/table/currency.h +++ /dev/null @@ -1,34 +0,0 @@ -/* $Id$ */ - -// exchange rate prefix -// | separator | postfix -// | | Euro year | | -// | | | | | -CurrencySpec _currency_specs[] = { -{ 1, ',', CF_NOEURO, "\xA3", "" }, // british pounds -{ 2, ',', CF_NOEURO, "$", "" }, // us dollars -{ 2, ',', CF_ISEURO, "¤", "" }, // Euro -{ 200, ',', CF_NOEURO, "\xA5", "" }, // yen - -{ 19, ',', 2002, "", " S." }, // austrian schilling -{ 57, ',', 2002, "BEF ", "" }, // belgian franc -{ 2, ',', CF_NOEURO,"CHF ", "" }, // swiss franc -{ 50, ',', CF_NOEURO, "", " Kc" }, // czech koruna // TODO: Should use the "c" with an upside down "^" -{ 4, '.', 2002, "DM ", "" }, // deutsche mark -{ 10, '.', CF_NOEURO, "", " kr" }, // danish krone -{ 200, '.', 2002, "Pts ", "" }, // spanish pesetas -{ 8, ',', 2002, "", " MK" }, // finnish markka -{ 10, '.', 2002, "FF ", "" }, // french francs -{ 480, ',', 2002, "", "Dr." }, // greek drachma -{ 376, ',', 2002, "", " Ft" }, // forint -{ 130, '.', CF_NOEURO, "", " Kr" }, // icelandic krona -{ 2730,',', 2002, "", " L." }, // italian lira -{ 3, ',', 2002, "NLG ", "" }, // dutch gulden -{ 11, '.', CF_NOEURO, "", " Kr" }, // norwegian krone -{ 6, ' ', CF_NOEURO, "", " zl" }, // polish zloty -{ 6, '.', CF_NOEURO, ""," Lei" }, // romanian Lei -{ 5, ' ', CF_NOEURO, "", " p" }, // russian rouble -{ 13, '.', CF_NOEURO, "", " Kr" }, // swedish krona -{ 1, ' ', CF_NOEURO, "", "" }, // custom currency -}; - |