summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorludde <ludde@openttd.org>2005-07-16 20:58:04 +0000
committerludde <ludde@openttd.org>2005-07-16 20:58:04 +0000
commit64f6839816221873b9a5327fe038533a7d3b8a98 (patch)
tree69f0f649731f03bc4b9a79121d4b839e7400a826 /misc.c
parent01f3b6b6fe88ccfbd2bfa2c7af495e1739471409 (diff)
downloadopenttd-64f6839816221873b9a5327fe038533a7d3b8a98.tar.xz
(svn r2594) Fix: [strgen] Misc updates to the string system.
- Renamed the plural command to "P" instead of "PLURAL". Now write something like this to append an s on plural: {P "" s}. (You can optionally still add an argument index to explicitly specifiy which number that's used) - Removed the pluralized cargo strings from the string files. The new method is to use the plural specifier {P} - Added support for genders. First add "##gender der das die" on top, then use {G=der} on a cargoname/industry to set the gender, and to switch between genders do something like {G neu neu neue} {STRING} - Updated the swedish/english translation with P strings.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index 193c7fa22..f7b6c120a 100644
--- a/misc.c
+++ b/misc.c
@@ -430,8 +430,8 @@ void InitializeLandscapeVariables(bool only_constants)
str = lpd->names[i];
_cargoc.names_s[i] = str;
_cargoc.names_p[i] = (str += 0x20);
- _cargoc.names_long_s[i] = (str += 0x20);
- _cargoc.names_long_p[i] = (str += 0x20);
+ _cargoc.names_long[i] = (str += 0x20);
+// _cargoc.names_long_p[i] = (str += 0x20);
_cargoc.names_short[i] = (str += 0x20);
_cargoc.weights[i] = lpd->weights[i];