summaryrefslogtreecommitdiff
path: root/src/currency.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/currency.h')
-rw-r--r--src/currency.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/currency.h b/src/currency.h
index 3bb0b9e2f..a72eab7d0 100644
--- a/src/currency.h
+++ b/src/currency.h
@@ -12,7 +12,7 @@ enum {
CUSTOM_CURRENCY_ID = NUM_CURRENCY - 1
};
-typedef struct {
+struct CurrencySpec {
uint16 rate;
char separator;
Year to_euro;
@@ -29,7 +29,7 @@ typedef struct {
*/
byte symbol_pos;
StringID name;
-} CurrencySpec;
+};
extern CurrencySpec _currency_specs[NUM_CURRENCY];