mirror of https://github.com/OpenTTD/OpenTTD
(svn r11422) -Fix [FS#1430]: properly support genders coming from newgrfs instead of crashing.
parent
8752519896
commit
eb47b106ac
|
@ -691,7 +691,8 @@ static char* FormatString(char* buff, const char* str, const int64* argv, uint c
|
||||||
}
|
}
|
||||||
|
|
||||||
case SCC_GENDER_LIST: { // {G 0 Der Die Das}
|
case SCC_GENDER_LIST: { // {G 0 Der Die Das}
|
||||||
const char* s = GetStringPtr(argv_orig[(byte)*str++]); // contains the string that determines gender.
|
char buffr[512];
|
||||||
|
const char *s = GetStringWithArgs(buffr, argv_orig[(byte)*str++], argv, last); // contains the string that determines gender.
|
||||||
int len;
|
int len;
|
||||||
int gender = 0;
|
int gender = 0;
|
||||||
if (s != NULL) {
|
if (s != NULL) {
|
||||||
|
|
Loading…
Reference in New Issue