1
0
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:
glx
2007-07-18 02:08:56 +00:00
parent b6d6e407ad
commit d8690139b4

View File

@@ -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