summaryrefslogtreecommitdiff
path: root/strings.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-20 19:48:25 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-20 19:48:25 +0000
commitdf8b06dec6b999aa3901787ec664899b5e6f7074 (patch)
tree48fd84eccf2c748dcfa67f2c508ad836d3d47088 /strings.c
parent6d2c7b4fdf07692be6d39dcccc32f8134d868797 (diff)
downloadopenttd-df8b06dec6b999aa3901787ec664899b5e6f7074.tar.xz
(svn r6858) - Fix (r6855): Handle rail vehicles with no capacity (N/A) by setting cargo type to CT_INVALID and handling it later. STR_8838_N_A is not a valid cargo type...
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/strings.c b/strings.c
index 7e20c2c01..ead83f84f 100644
--- a/strings.c
+++ b/strings.c
@@ -731,7 +731,8 @@ static char *FormatString(char *buff, const char *str, const int32 *argv, uint c
// Layout now is:
// 8bit - cargo type
// 16-bit - cargo count
- StringID cargo_str = _cargoc.names_long[GetInt32(&argv)];
+ CargoID cargo = GetInt32(&argv);
+ StringID cargo_str = (cargo == CT_INVALID) ? STR_8838_N_A : _cargoc.names_long[cargo];
buff = GetStringWithArgs(buff, cargo_str, argv++);
break;
}