mirror of https://github.com/OpenTTD/OpenTTD
(svn r6122) Fix an off-by-two error in r6108: it should be the index for the last element in the array
parent
bd80b4fd19
commit
1ca21fb8d9
|
@ -7,7 +7,7 @@ enum {
|
||||||
CF_NOEURO = 0,
|
CF_NOEURO = 0,
|
||||||
CF_ISEURO = 1,
|
CF_ISEURO = 1,
|
||||||
NUM_CURRENCY = 25,
|
NUM_CURRENCY = 25,
|
||||||
CUSTOM_CURRENCY_ID = NUM_CURRENCY + 1,
|
CUSTOM_CURRENCY_ID = NUM_CURRENCY - 1
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in New Issue