From 6b86ee9888d177c214a079a1c5d88b680458fff4 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 14 Jan 2011 22:08:40 +0000 Subject: (svn r21797) -Fix/Change: unify the size (in characters) of the string inputs with eachother and TTD to prevent crashes/asserts with e.g. signs that are too long --- src/vehicle_type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vehicle_type.h') diff --git a/src/vehicle_type.h b/src/vehicle_type.h index 4c4f468cd..4b4150a63 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_CHARS = 31; ///< The maximum length of a vehicle name in characters including '\0' +static const uint MAX_LENGTH_VEHICLE_NAME_CHARS = 32; ///< 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. */ -- cgit v1.2.3-54-g00ecf