diff options
author | rubidium <rubidium@openttd.org> | 2008-11-02 11:15:26 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-11-02 11:15:26 +0000 |
commit | c03e55b32a4b9bf64c516d38ce75ff5c8ab39748 (patch) | |
tree | d28b2374169e9537977647cc9ce879eeac6d529f /src/strgen | |
parent | 6043b4574e2ab17fcc7b2ae631deb22c61468c7e (diff) | |
download | openttd-c03e55b32a4b9bf64c516d38ce75ff5c8ab39748.tar.xz |
(svn r14554) -Fix: languages using longer gender names than strgen supports.
Diffstat (limited to 'src/strgen')
-rw-r--r-- | src/strgen/strgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index 403050104..ed630d67f 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -99,7 +99,7 @@ static char _lang_name[32], _lang_ownname[32], _lang_isocode[16]; static byte _lang_pluralform; static byte _lang_textdir; #define MAX_NUM_GENDER 8 -static char _genders[MAX_NUM_GENDER][8]; +static char _genders[MAX_NUM_GENDER][16]; static int _numgenders; // contains the name of all cases. |