all repos — mgba @ d53e479fede3df65a3c5375d72240b0327a2c0f1

mGBA Game Boy Advance Emulator

VFS: Use / as the path separator on Windows
Jeffrey Pfau jeffrey@endrift.com
Wed, 06 Jan 2016 21:05:05 -0800
commit

d53e479fede3df65a3c5375d72240b0327a2c0f1

parent

ee5c9c8a91ed94dd0a3858f3d265ba12f57714ca

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/util/vfs.hsrc/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