VFS: Use / as the path separator on Windows
Jeffrey Pfau jeffrey@endrift.com
Wed, 06 Jan 2016 21:05:05 -0800
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
src/util/vfs.h
→
src/util/vfs.h
@@ -11,7 +11,7 @@
#ifdef _WIN32 #include <io.h> #include <windows.h> -#define PATH_SEP "\\" +#define PATH_SEP "/" // Windows can handle slashes, and backslashes confuse some libraries #else #define PATH_SEP "/" #endif