summaryrefslogtreecommitdiff
path: root/src/waypoint_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-12-05 22:25:36 +0000
committerrubidium <rubidium@openttd.org>2010-12-05 22:25:36 +0000
commit44d1c5534757a284b528dfe30ba227675234b4e4 (patch)
tree7c3bb76c06b596487640e3d1f30009af026ca47a /src/waypoint_cmd.cpp
parent5c9c3f1acf9a49b8da6fcbea0e4072750181a48c (diff)
downloadopenttd-44d1c5534757a284b528dfe30ba227675234b4e4.tar.xz
(svn r21415) -Codechange: limit station/waypoint name by amount of characters, not bytes
Diffstat (limited to 'src/waypoint_cmd.cpp')
-rw-r--r--src/waypoint_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint_cmd.cpp b/src/waypoint_cmd.cpp
index 510119c7e..c91334051 100644
--- a/src/waypoint_cmd.cpp
+++ b/src/waypoint_cmd.cpp
@@ -400,7 +400,7 @@ CommandCost CmdRenameWaypoint(TileIndex tile, DoCommandFlag flags, uint32 p1, ui
bool reset = StrEmpty(text);
if (!reset) {
- if (strlen(text) >= MAX_LENGTH_STATION_NAME_BYTES) return CMD_ERROR;
+ if (Utf8StringLength(text) >= MAX_LENGTH_STATION_NAME_CHARS) return CMD_ERROR;
if (!IsUniqueWaypointName(text)) return_cmd_error(STR_ERROR_NAME_MUST_BE_UNIQUE);
}