summaryrefslogtreecommitdiff
path: root/src/namegen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/namegen.cpp')
-rw-r--r--src/namegen.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}