summaryrefslogtreecommitdiff
path: root/src/townname.cpp
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2020-12-14 20:25:01 +0100
committerGitHub <noreply@github.com>2020-12-14 20:25:01 +0100
commit68f9925cd4c8b29dbdac301e86bd9fc6f5a7fb27 (patch)
tree7089a650e6372e6ea37b3d6a60e9359e19120ae1 /src/townname.cpp
parentb14e3b9b9df2294e1f0b7fab8b2c23381e32ade7 (diff)
downloadopenttd-68f9925cd4c8b29dbdac301e86bd9fc6f5a7fb27.tar.xz
Codechange: use \u to indicate unicode chars in strings (#8379)
With \x, we sometimes had to do the "" trick, as the length is not predefined. With C++11 bringing \u to the specs, which has a preset length, we no longer need the "" trick. We set the strings to u8, to ensure all compilers use UTF-8 encoding for the \u characters. This was triggered by newer CLangs, which start to warn if you use "" in the middle of a string, wondering if that was your intention. It is a good question. And this is our answer :)
Diffstat (limited to 'src/townname.cpp')
-rw-r--r--src/townname.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/townname.cpp b/src/townname.cpp
index 77dfb448b..e7999f9a5 100644
--- a/src/townname.cpp
+++ b/src/townname.cpp
@@ -505,7 +505,7 @@ static char *MakeFinnishTownName(char *buf, const char *last, uint32 seed)
strstr(orig, "A") != nullptr || strstr(orig, "O") != nullptr || strstr(orig, "U") != nullptr) {
buf = strecpy(buf, "la", last);
} else {
- buf = strecpy(buf, "l\xC3\xA4", last);
+ buf = strecpy(buf, u8"l\u00e4", last);
}
return buf;
}