summaryrefslogtreecommitdiff
path: root/src/vehicle_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-12-05 22:25:49 +0000
committerrubidium <rubidium@openttd.org>2010-12-05 22:25:49 +0000
commitea6803971879f9c35fd2695d3817b54b87fb6269 (patch)
tree4f18386494a5fc93a119ad76f9ed8d7d3ca71c15 /src/vehicle_type.h
parent44d1c5534757a284b528dfe30ba227675234b4e4 (diff)
downloadopenttd-ea6803971879f9c35fd2695d3817b54b87fb6269.tar.xz
(svn r21416) -Codechange: limit vehicle name by amount of characters, not bytes
Diffstat (limited to 'src/vehicle_type.h')
-rw-r--r--src/vehicle_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_type.h b/src/vehicle_type.h
index 3f393435f..4c4f468cd 100644
--- a/src/vehicle_type.h
+++ b/src/vehicle_type.h
@@ -64,7 +64,7 @@ enum DepotCommand {
DEPOT_COMMAND_MASK = 0xFU << 28,
};
-static const uint MAX_LENGTH_VEHICLE_NAME_BYTES = 31; ///< The maximum length of a vehicle name in bytes including '\0'
+static const uint MAX_LENGTH_VEHICLE_NAME_CHARS = 31; ///< The maximum length of a vehicle name in characters including '\0'
static const uint MAX_LENGTH_VEHICLE_NAME_PIXELS = 150; ///< The maximum length of a vehicle name in pixels
/** Vehicle acceleration models. */