(svn r6122) Fix an off-by-two error in r6108: it should be the index for the last element in the array

pull/155/head
tron 18 years ago
parent 1f81d83f9c
commit 7c67a5e365

@ -7,7 +7,7 @@ enum {
CF_NOEURO = 0,
CF_ISEURO = 1,
NUM_CURRENCY = 25,
CUSTOM_CURRENCY_ID = NUM_CURRENCY + 1,
CUSTOM_CURRENCY_ID = NUM_CURRENCY - 1
};
typedef struct {

Loading…
Cancel
Save