From 26b58991f9e544bab6323f2499dd89b640ae9fb8 Mon Sep 17 00:00:00 2001 From: ehofman Date: Mon, 7 Jun 2004 12:43:29 +0000 Subject: [PATCH] MingW fix. --- simgear/misc/sg_path.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/misc/sg_path.cxx b/simgear/misc/sg_path.cxx index f21a523c..7dc1cb7f 100644 --- a/simgear/misc/sg_path.cxx +++ b/simgear/misc/sg_path.cxx @@ -43,7 +43,7 @@ static const char sgDirPathSep = '/'; static const char sgDirPathSepBad = '\\'; #endif -#if defined( WIN32 ) +#if defined( WIN32 ) && !defined(__CYGWIN__) static const char sgSearchPathSep = ';'; #else static const char sgSearchPathSep = ':';