diff options
author | rubidium <rubidium@openttd.org> | 2010-12-05 22:25:36 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-12-05 22:25:36 +0000 |
commit | 44d1c5534757a284b528dfe30ba227675234b4e4 (patch) | |
tree | 7c3bb76c06b596487640e3d1f30009af026ca47a /src/ai/api | |
parent | 5c9c3f1acf9a49b8da6fcbea0e4072750181a48c (diff) | |
download | openttd-44d1c5534757a284b528dfe30ba227675234b4e4.tar.xz |
(svn r21415) -Codechange: limit station/waypoint name by amount of characters, not bytes
Diffstat (limited to 'src/ai/api')
-rw-r--r-- | src/ai/api/ai_basestation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/ai_basestation.cpp b/src/ai/api/ai_basestation.cpp index 30089609c..aea5d52cc 100644 --- a/src/ai/api/ai_basestation.cpp +++ b/src/ai/api/ai_basestation.cpp @@ -38,7 +38,7 @@ { EnforcePrecondition(false, IsValidBaseStation(station_id)); EnforcePrecondition(false, !::StrEmpty(name)); - EnforcePreconditionCustomError(false, ::strlen(name) < MAX_LENGTH_STATION_NAME_BYTES, AIError::ERR_PRECONDITION_STRING_TOO_LONG); + EnforcePreconditionCustomError(false, ::Utf8StringLength(name) < MAX_LENGTH_STATION_NAME_CHARS, AIError::ERR_PRECONDITION_STRING_TOO_LONG); return AIObject::DoCommand(0, station_id, 0, ::Station::IsValidID(station_id) ? CMD_RENAME_STATION : CMD_RENAME_WAYPOINT, name); } |