From ea2c50281e34c8c0ade102552fc3d0f336496de9 Mon Sep 17 00:00:00 2001 From: glx Date: Wed, 18 Mar 2009 17:55:47 +0000 Subject: (svn r15762) -Codechange: inlined utf8 chars are not handled properly on eastern version of windows so escape them --- src/namegen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/namegen.cpp') diff --git a/src/namegen.cpp b/src/namegen.cpp index caac1096a..68fc86a24 100644 --- a/src/namegen.cpp +++ b/src/namegen.cpp @@ -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; } -- cgit v1.2.3-54-g00ecf