Changeset - r7277:e475025d0cae
[Not reviewed]
master
0 1 0
glx - 17 years ago 2007-07-18 02:08:56
glx@openttd.org
(svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/stdafx.h
Show inline comments
 
@@ -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
0 comments (0 inline, 0 general)