VFS: Use / as the path separator on Windows

This commit is contained in:
Jeffrey Pfau 2016-01-06 21:05:05 -08:00
parent ee5c9c8a91
commit d53e479fed
1 changed files with 1 additions and 1 deletions

View File

@ -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