(svn r15762) -Codechange: inlined utf8 chars are not handled properly on eastern version of windows so escape them

This commit is contained in:
glx
2009-03-18 17:55:47 +00:00
parent b798030c64
commit 6d9b2ac76a
5 changed files with 519 additions and 519 deletions

View File

@@ -372,7 +372,7 @@ static char *MakeFinnishTownName(char *buf, const char *last, uint32 seed)
strstr(orig, "A") != NULL || strstr(orig, "O") != NULL || strstr(orig, "U") != NULL) {
buf = strecpy(buf, "la", last);
} else {
buf = strecpy(buf, "lä", last);
buf = strecpy(buf, "l\xC3\xA4", last);
}
return buf;
}