Only use the ";" delimiter under WIN32

This commit is contained in:
curt
2003-08-09 02:54:15 +00:00
parent 77cefa924c
commit 0bf579cf27

View File

@@ -35,14 +35,19 @@
* define directory path separators
*/
#ifdef macintosh
#if defined( macintosh )
static const char sgDirPathSep = ':';
static const char sgDirPathSepBad = '/';
#else
static const char sgDirPathSep = '/';
static const char sgDirPathSepBad = ':';
#endif
#if defined( WIN32 )
static const char sgSearchPathSep = ';';
#else
static const char sgSearchPathSep = ':';
#endif
// If Unix, replace all ":" with "/". If MacOS, replace all "/" with