Mercurial > hg > openttd
diff src/functions.h @ 7097:5c2889ace3ac draft
(svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
author | peter1138 <peter1138@openttd.org> |
---|---|
date | Wed, 27 Jun 2007 20:53:25 +0000 (2007-06-27) |
parents | 74d401c66902 |
children | 5305f52bed67 |
line wrap: on
line diff
--- a/src/functions.h +++ b/src/functions.h @@ -98,9 +98,6 @@ void DeleteName(StringID id); char *GetName(char *buff, StringID id, const char* last); -/* AllocateNameUnique also tests if the name used is not used anywere else - * and if it is used, it returns an error. */ -#define AllocateNameUnique(name, skip) RealAllocateName(name, skip, true) #define AllocateName(name, skip) RealAllocateName(name, skip, false) StringID RealAllocateName(const char *name, byte skip, bool check_double); void ConvertNameArray();