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
commit6b58c1c2ffffb2fed4bbbdb9642fb2ccaab629ec (patch)
treedf258d6c86cff26b105c8f2f0a64a2069abb5cd1 /src/stdafx.h
parentae0a92b51a35f8450b2cca88debc1f3ac85717fb (diff)
downloadopenttd-6b58c1c2ffffb2fed4bbbdb9642fb2ccaab629ec.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