summaryrefslogtreecommitdiff
path: root/variables.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-08-06 14:59:54 +0000
committertron <tron@openttd.org>2005-08-06 14:59:54 +0000
commitbaca040df07df8d02e342ae1fbc2357b2e116062 (patch)
treeabe83980b6dfec97b5a7f8cb50bc2959e2656c88 /variables.h
parent4f15ada6cdd2b322f8f2b7a0ad41be7c2cda1192 (diff)
downloadopenttd-baca040df07df8d02e342ae1fbc2357b2e116062.tar.xz
(svn r2815) Store the currency information in one central place instead of scattering it in several unrelated files
Diffstat (limited to 'variables.h')
-rw-r--r--variables.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/variables.h b/variables.h
index 492d55457..530bfd47c 100644
--- a/variables.h
+++ b/variables.h
@@ -37,21 +37,6 @@ VARDEF GameOptions _opt_newgame;
// Pointer to one of the two _opt OR _opt_newgame structs
VARDEF GameOptions *_opt_ptr;
-enum {
- CF_NOEURO = 0,
- CF_ISEURO = 1,
-};
-
-typedef struct {
- uint16 rate;
- char separator;
- uint16 to_euro;
- char prefix[16];
- char suffix[16];
-} CurrencySpec;
-
-VARDEF CurrencySpec _currency_specs[24];
-
// Current date
VARDEF uint16 _date;
VARDEF uint16 _date_fract;