summaryrefslogtreecommitdiff
path: root/src/stdafx.h
diff options
context:
space:
mode:
authororudge <orudge@openttd.org>2007-01-10 19:39:54 +0000
committerorudge <orudge@openttd.org>2007-01-10 19:39:54 +0000
commit5652c39bdddb22dfc64bdef1211761a0c3b02951 (patch)
treedf258d6c86cff26b105c8f2f0a64a2069abb5cd1 /src/stdafx.h
parent28712fe837cf378ff85bf39105a51ae6118a9c05 (diff)
downloadopenttd-5652c39bdddb22dfc64bdef1211761a0c3b02951.tar.xz
(svn r8042) - Fix: OS/2 compilation with GCC (thanks to Paul Smedley and TrueBrain for their help)
Diffstat (limited to 'src/stdafx.h')
-rw-r--r--src/stdafx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdafx.h b/src/stdafx.h
index 89d51c477..c854e4a61 100644
--- a/src/stdafx.h
+++ b/src/stdafx.h
@@ -183,7 +183,7 @@
# endif
#endif /* WIN32 || __OS2__ || WIN64 */
-#if defined(WIN32) || defined(WIN64) || defined(__OS2__)
+#if defined(WIN32) || defined(WIN64) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
# define PATHSEP "\\"
# define PATHSEPCHAR '\\'
#else