mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-31 02:19:09 +00:00
(svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')
This commit is contained in:
@@ -349,10 +349,10 @@ CDECL error(const char *str, ...);
|
||||
#define _stricmp strcasecmp
|
||||
#endif
|
||||
|
||||
#if !defined(MORPHOS) and !defined(OPENBSD)
|
||||
#if !defined(MORPHOS) && !defined(OPENBSD)
|
||||
/* MorphOS & OpenBSD don't know wchars, the rest does :( */
|
||||
#define HAS_WCHAR
|
||||
#endif /* !defined(MORHPOS) and !defined(OPENBSD) */
|
||||
#endif /* !defined(MORPHOS) && !defined(OPENBSD) */
|
||||
|
||||
#if !defined(MAX_PATH)
|
||||
# define MAX_PATH 260
|
||||
|
Reference in New Issue
Block a user