From 53851d5e776484c92d535d756d6cb06a4fc9013a Mon Sep 17 00:00:00 2001 From: ludde Date: Thu, 14 Jul 2005 09:53:52 +0000 Subject: (svn r2565) Fix: Remove GetParamInt8, GetParamInt16, GetParamUint16.. they are just confusing and just do the same thing as GetParamInt32 --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc.c') diff --git a/misc.c b/misc.c index 9e87baf97..bf78f9b98 100644 --- a/misc.c +++ b/misc.c @@ -320,7 +320,7 @@ void DeleteName(StringID id) char *GetName(int id, char *buff) { if (id & 0x400) GetParamInt32(); - if (id & 0x200) GetParamUint16(); + if (id & 0x200) GetParamInt32(); return strecpy(buff, _name_array[id & ~0x600], NULL); } -- cgit v1.2.3-54-g00ecf