summaryrefslogtreecommitdiff
path: root/currency.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-17 20:22:35 +0000
committerrubidium <rubidium@openttd.org>2006-08-17 20:22:35 +0000
commit7cfd3eb61834ee3d4c5037b0a3ffc71089b9564a (patch)
tree0e09fbecef792005a3c390649f7cf774c8c43325 /currency.h
parenta178d2600b02a2c3091d1e185f887d371f4a1feb (diff)
downloadopenttd-7cfd3eb61834ee3d4c5037b0a3ffc71089b9564a.tar.xz
(svn r5934) -Cleanup: forgot some conversions to Year and to Date
-Cleanup: use _cur_year instead of _date for some (year based) comparisons -Cleanup: remove a magic number in favour of another (less) magic number
Diffstat (limited to 'currency.h')
-rw-r--r--currency.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/currency.h b/currency.h
index a94f85eb2..d1de97e41 100644
--- a/currency.h
+++ b/currency.h
@@ -11,7 +11,7 @@ enum {
typedef struct {
uint16 rate;
char separator;
- uint16 to_euro;
+ Year to_euro;
char prefix[16];
char suffix[16];
} CurrencySpec;