summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorludde <ludde@openttd.org>2005-07-15 14:53:44 +0000
committerludde <ludde@openttd.org>2005-07-15 14:53:44 +0000
commit2fa79c9b4d140f78e5e6392aded7beebeec5c230 (patch)
treeae57d82a4f417509705d577ea29c99c80b9e579b /misc.c
parent8f71864bef912a9cd8b8f649c5acbe638d48fc24 (diff)
downloadopenttd-2fa79c9b4d140f78e5e6392aded7beebeec5c230.tar.xz
(svn r2572) - Codechange: [string] Changed string system so it's not as dependent on decode_parameters
- Feature: [strgen] Allow changing the order of parameters in translated strings. - Use {1:TOWN} syntax to set the order. - Codechange: [strgen] Rewrote lots of strgen internals.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/misc.c b/misc.c
index bf78f9b98..b4ef52821 100644
--- a/misc.c
+++ b/misc.c
@@ -319,9 +319,6 @@ void DeleteName(StringID id)
char *GetName(int id, char *buff)
{
- if (id & 0x400) GetParamInt32();
- if (id & 0x200) GetParamInt32();
-
return strecpy(buff, _name_array[id & ~0x600], NULL);
}