* Curtis L. Olson -- Saturday 09 August 2003 04:53:
> Ooops I didn't catch that because I was explicitely specifying the
> scenery path.  SHould now be fixed in cvs.

It does still not work under Linux, because sgDirPathSepBad is still
defined to be ':' and hence replaced by '/' in SGPath::fix().
I simply replaced ':' by '\\' to make it work.  :-)

m.


Index: sg_path.cxx
===================================================================
RCS file: /var/cvs/SimGear-0.3/SimGear/simgear/misc/sg_path.cxx,v
retrieving revision 1.6
diff -u -p -r1.6 sg_path.cxx
--- sg_path.cxx 9 Aug 2003 02:54:15 -0000       1.6
+++ sg_path.cxx 9 Aug 2003 08:01:05 -0000
@@ -40,7 +40,7 @@ static const char sgDirPathSep = ':';
 static const char sgDirPathSepBad = '/';
 #else
 static const char sgDirPathSep = '/';
-static const char sgDirPathSepBad = ':';
+static const char sgDirPathSepBad = '\\';
 #endif

 #if defined( WIN32 )

_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to